https://github.com/root-project/root
Raw File
Tip revision: a70b5a421674eba71862352aa7296d9ddc4ba9ba authored by Pere Mato on 05 April 2016, 08:24:40 UTC
Update ROOT version files to v5.34/36.
Tip revision: a70b5a4
t1178.h
/* -*- C++ -*- */
/*************************************************************************
 * Copyright(c) 1995~2005  Masaharu Goto (root-cint@cern.ch)
 *
 * For the licensing terms see the file COPYING
 *
 ************************************************************************/

#include <stdio.h>
template<class T> class vector {
 public:
  typedef T* iterator;
};

typedef double FPoint;
typedef vector <FPoint *> PointVector;
typedef vector <FPoint *> :: iterator PointVectorIterator;

class CTest
{
 public:
  CTest( void ) { printf("CTest::CTest()\n"); return; };
  ~CTest() { printf("CTest::~CTest()\n"); return; };
  
  void Execute ( PointVectorIterator &iter ) {
    printf("CTest::Execute(PointVectorIterator&)\n");
  }
  void f(double**& x) {
    printf("CTest::f(double**&)\n");
  }
  void g(vector<double*>::iterator& x) {
    printf("CTest::g(vector<double*>&)\n");
  }
  void h(vector<FPoint*>::iterator& x) {
    printf("CTest::h(vector<FPoint*>&)\n");
  }
};


back to top