Bowling/include/FileUtil.h

19 lines
303 B
C++

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