- add missed files
This commit is contained in:
18
src/engine/helper/HL_File.h
Normal file
18
src/engine/helper/HL_File.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#ifndef __HL_FILE_H
|
||||
#define __HL_FILE_H
|
||||
|
||||
#include <string>
|
||||
|
||||
class FileHelper
|
||||
{
|
||||
public:
|
||||
static bool exists(const std::string& s);
|
||||
static bool exists(const char* s);
|
||||
|
||||
static void remove(const std::string& s);
|
||||
static void remove(const char* s);
|
||||
|
||||
static std::string gettempname();
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user