/* -*- C++ -*- */ /************************************************************************* * Copyright(c) 1995~2005 Masaharu Goto (root-cint@cern.ch) * * For the licensing terms see the file COPYING * ************************************************************************/ // problem remains with Borland C++ 5.5 #if 1 #include #else typedef unsigned int size_type; template class allocator { }; template > class vector { public: vector(size_type n,const T& value=T()) ; }; #endif template class c { std::vector*> fDummy; //std::vector > fDummy; public: c() ; c(const c &cc); //ClassDefT(c,1) }; template c::c(const c &cc) {} template c::c() {} #ifdef __MAKECINT__ #pragma link C++ class c; #else c x; #endif