5db5ce971c
Also added a copy pre-build even for .h files into the include directory for charcoal and charcoal-builtin
18 lines
195 B
C++
18 lines
195 B
C++
#pragma once
|
|
|
|
class FileUtil
|
|
{
|
|
public:
|
|
class File
|
|
{
|
|
public:
|
|
File(const std::string& path);
|
|
|
|
unsigned long get_size();
|
|
|
|
char* get_contents();
|
|
|
|
private:
|
|
const std::string m_path;
|
|
};
|
|
}; |