00001 #ifndef LCCOLLECTIONIOVEC_H 00002 #define LCCOLLECTIONIOVEC_H 1 00003 00004 #include "IMPL/LCCollectionVec.h" 00005 00006 namespace SIO{ 00007 class SIOCollectionHandler; 00008 } 00009 00010 namespace IOIMPL { 00011 00012 /** Adding stuff needed for io (friend declarations, etc.) 00013 * 00014 * @author gaede 00015 * @version Mar 6, 2003 00016 */ 00017 class LCCollectionIOVec : public IMPL::LCCollectionVec { 00018 00019 friend class SIO::SIOCollectionHandler ; 00020 00021 protected: 00022 LCCollectionIOVec() { /* no default c'tor */ } 00023 00024 00025 public: 00026 LCCollectionIOVec(const std::string& type) : IMPL::LCCollectionVec(type) { } 00027 00028 }; // class 00029 } // namespace 00030 #endif /* ifndef LCCOLLECTIONVEC_H */
1.3.9.1