12 lines
214 B
C++
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 |