/* -*- C++ -*- */ /************************************************************************* * Copyright(c) 1995~2005 Masaharu Goto (root-cint@cern.ch) * * For the licensing terms see the file COPYING * ************************************************************************/ // with cmspb.C #ifndef GOOD #include #endif template class Container { //some container implementation }; template class refc_ptr { //something totally generic }; template class refc_ptr { //something specific to the false case }; template class refc_ptr { //something specific to the true case }; class SimTrack {}; class SimEvent { public: typedef Container track_container; typedef refc_ptr track_containerRef; }; #ifdef __MAKECINT__ #pragma link C++ class SimEvent; #endif