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