/* -*- C++ -*- */ /************************************************************************* * Copyright(c) 1995~2005 Masaharu Goto (root-cint@cern.ch) * * For the licensing terms see the file COPYING * ************************************************************************/ #include template class normal_iterator {}; template class Allocator {}; template > class List { public: typedef normal_iterator iterator; }; class BaseStar { public: }; //void f( list& x) { } #ifdef __MAKECINT__ #pragma link C++ class list::iterator; //#pragma link C++ typedef list::iterator; #pragma link C++ typedef List::iterator; #endif