the final rename

This commit is contained in:
MihailRis
2024-05-06 03:38:19 +03:00
parent f27a418dbe
commit 1627e21c1d
196 changed files with 836 additions and 815 deletions
+15
View File
@@ -0,0 +1,15 @@
#ifndef SERIALIZABLE_HPP_
#define SERIALIZABLE_HPP_
#include "../coders/json.hpp"
#include <memory>
class Serializable {
public:
virtual ~Serializable() { }
virtual std::unique_ptr<dynamic::Map> serialize() const = 0;
virtual void deserialize(dynamic::Map* src) = 0;
};
#endif // SERIALIZABLE_HPP_