#ifndef DESERIALIZER_H #define DESERIALIZER_H #include #include class Deserializer { public: static bool deserializeData(const std::string& filename, std::string& data); }; #endif