16 lines
232 B
C++
16 lines
232 B
C++
#ifndef FILEREADER_H
|
|
#define FILEREADER_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class FileReader {
|
|
public:
|
|
FileReader();
|
|
|
|
~FileReader();
|
|
|
|
static std::string GetFile(char *path);
|
|
};
|
|
|
|
#endif |