00001 #ifndef LCWGTRELATIONIOIMPL_H 00002 #define LCWGTRELATIONIOIMPL_H 1 00003 00004 #include "IMPL/LCRelationImpl.h" 00005 00006 namespace SIO{ 00007 class SIOLCRelationHandler; 00008 } 00009 00010 00011 namespace IOIMPL { 00012 00013 /** Adding stuff needed for io (friend declarations, etc.) 00014 * 00015 * @author gaede 00016 * @version $Id: LCRelationIOImpl.h,v 1.4 2005/04/15 08:37:40 gaede Exp $ 00017 */ 00018 00019 class LCRelationIOImpl : public IMPL::LCRelationImpl { 00020 00021 friend class SIO::SIOLCRelationHandler ; 00022 00023 public: 00024 LCRelationIOImpl() { } 00025 LCRelationIOImpl( EVENT::LCObject* from, EVENT::LCObject* to , float weight=1.0f ) 00026 : LCRelationImpl(from, to, weight) {} 00027 // LCRelationIOImpl(const std::string& type) : IMPL::LCRelationImpl(type) { } 00028 00029 }; // class 00030 } // namespace 00031 #endif /* ifndef LCRELATIONIMPL_H */
1.3.9.1