diff --git a/FileLoader.h b/FileLoader.h new file mode 100644 index 0000000..0eb8f56 --- /dev/null +++ b/FileLoader.h @@ -0,0 +1,15 @@ + +#ifndef FILELOADER_H +#define FILELOADER_H FILELOADER_H + +#include + +class FileLoader +{ + public: + void * loadFile(const std::string & fullPath, + const std::string & shortPath, + int & size); +}; + +#endif