#ifndef FILEUTIL_H #define FILEUTIL_H #include #include using namespace std; class FileUtil { public: FileUtil() = default; ~FileUtil() = default; static string getFile(char *path); static bool fileExists(char *path); }; #endif