1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#ifndef oo_ObjPort_H__ #define oo_ObjPort_H__ #include "ObjBase.h" #include <cstdio> namespace meow{ template<size_t sid> class ObjPort{ public: static ObjBase* read (FILE* __f, bool __binary); static bool write(FILE* __f, bool __binary, ObjBase* __obj, unsigned int __fg); }; } #endif // oo_ObjPort_H__