added initial FileLoader.h

git-svn-id: svn://anubis/misc/FileLoader@173 bd8a9e45-a331-0410-811e-c64571078777
This commit is contained in:
josh 2009-10-16 19:28:21 +00:00
parent 31c8f23374
commit 273e24de68

15
FileLoader.h Normal file
View File

@ -0,0 +1,15 @@
#ifndef FILELOADER_H
#define FILELOADER_H FILELOADER_H
#include <string>
class FileLoader
{
public:
void * loadFile(const std::string & fullPath,
const std::string & shortPath,
int & size);
};
#endif