13 lines
175 B
C++
13 lines
175 B
C++
#ifndef FILEUTILS_H
|
|
#define FILEUTILS_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
using namespace std;
|
|
|
|
struct FileUtils {
|
|
static bool fileExists(const char *path);
|
|
};
|
|
|
|
#endif |