BendCalc/include/Serializer.h

12 lines
214 B
C
Raw Normal View History

2023-11-25 14:37:27 -08:00
#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