Move project in sub

This commit is contained in:
Andrew nuark G 2020-12-18 17:40:22 +07:00
parent f868166756
commit ec1af1b8e5
43 changed files with 358 additions and 2 deletions

View file

@ -0,0 +1,13 @@
#ifndef ISERIALIZABLE_H
#define ISERIALIZABLE_H
#include <QDataStream>
class ISerializable {
public:
virtual void serialize(QDataStream &output) = 0;
virtual void deserialize(QDataStream &input) = 0;
};
#endif // ISERIALIZABLE_H