made loadFile a pure virtual function

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

View File

@ -7,9 +7,10 @@
class FileLoader
{
public:
void * loadFile(const std::string & fullPath,
const std::string & shortPath,
int & size);
virtual void * loadFile(
const std::string & fullPath,
const std::string & shortPath,
int & size) = 0;
};
#endif