From 273e24de68f94ec56cc4ca3aac3f5c8ffcfb90b2 Mon Sep 17 00:00:00 2001 From: josh Date: Fri, 16 Oct 2009 19:28:21 +0000 Subject: [PATCH] added initial FileLoader.h git-svn-id: svn://anubis/misc/FileLoader@173 bd8a9e45-a331-0410-811e-c64571078777 --- FileLoader.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 FileLoader.h 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