aboutsummaryrefslogtreecommitdiffstats
path: root/meowpp/oo/ObjPort.h
blob: b9baf0cd9b2fef6cc2e9a472aaa49f64a15431b2 (plain) (blame)
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__