13 lines
191 B
C++
13 lines
191 B
C++
#ifndef FILEHELPER_H
|
|
#define FILEHELPER_H
|
|
|
|
class FileHelper {
|
|
public:
|
|
FileHelper();
|
|
|
|
~FileHelper();
|
|
|
|
static bool FileExists(char *path);
|
|
};
|
|
|
|
#endif |