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