12 lines
216 B
C
12 lines
216 B
C
|
#ifndef DESERIALIZER_H
|
||
|
#define DESERIALIZER_H
|
||
|
|
||
|
#include <string>
|
||
|
#include <fstream>
|
||
|
|
||
|
class Deserializer {
|
||
|
public:
|
||
|
static bool deserializeData(const std::string& filename, std::string& data);
|
||
|
};
|
||
|
|
||
|
#endif
|