Project: finder, src: Serializer.h


シリアライザインタフェースクラスの定義
#ifndef SERIALIZER_H_
#define SERIALIZER_H_

/**
 * シリアル化インタフェース
 */
class Serializer {
 public:
  virtual void writeObject(int fd) const = 0;
  virtual void readObject(int fd) = 0;
};

#endif //SERIALIZER_H_