BendCalc/include/Serializer.h
2023-11-25 14:37:27 -08:00

12 lines
214 B
C++

#ifndef SERIALIZER_H
#define SERIALIZER_H
#include <string>
#include <fstream>
class Serializer {
public:
static bool serializeData(const std::string& filename, const std::string& data);
};
#endif