00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef StHbtEventWriterCollection_hh
00017 #define StHbtEventWriterCollection_hh
00018
00019 #include "StHbtMaker/Base/StHbtEventWriter.hh"
00020
00021 #include <list>
00022 #if !defined(ST_NO_NAMESPACES)
00023 using std::list;
00024 #endif
00025
00026 #ifdef ST_NO_TEMPLATE_DEF_ARGS
00027 typedef list<StHbtEventWriter*, allocator<StHbtEventWriter*> > StHbtEventWriterCollection;
00028 typedef list<StHbtEventWriter*, allocator<StHbtEventWriter*> >::iterator StHbtEventWriterIterator;
00029 #else
00030 typedef list<StHbtEventWriter*> StHbtEventWriterCollection;
00031 typedef list<StHbtEventWriter*>::iterator StHbtEventWriterIterator;
00032 #endif
00033
00034 #endif