mirror of
https://github.com/JorjBauer/aiie.git
synced 2024-11-04 04:05:31 +00:00
17 lines
249 B
C++
17 lines
249 B
C++
#ifndef __WOZ_SERIALIZER_H
|
|
#define __WOZ_SERIALIZER_H
|
|
|
|
#include "woz.h"
|
|
class WozSerializer: public virtual Woz {
|
|
public:
|
|
WozSerializer();
|
|
const char *diskName();
|
|
|
|
public:
|
|
bool Serialize(int8_t fd);
|
|
bool Deserialize(int8_t fd);
|
|
};
|
|
|
|
|
|
#endif
|