mirror of
https://github.com/JorjBauer/aiie.git
synced 2024-11-29 16:49:26 +00:00
13 lines
195 B
C++
13 lines
195 B
C++
#ifndef __WOZ_SERIALIZER_H
|
|
#define __WOZ_SERIALIZER_H
|
|
|
|
#include "woz.h"
|
|
class WozSerializer: public virtual Woz {
|
|
public:
|
|
bool Serialize(int8_t fd);
|
|
bool Deserialize(int8_t fd);
|
|
};
|
|
|
|
|
|
#endif
|