18 lines
269 B
C++
18 lines
269 B
C++
#ifndef FILEREADER_H
|
|
#define FILEREADER_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
using namespace std;
|
|
|
|
class FileReader {
|
|
public:
|
|
FileReader() = default;
|
|
|
|
~FileReader() = default;
|
|
|
|
static string getFile(char *path);
|
|
};
|
|
|
|
#endif |