From 9a6b50c8596a1dc7902f6c438f69c46203006ef0 Mon Sep 17 00:00:00 2001 From: josh Date: Fri, 16 Oct 2009 19:28:48 +0000 Subject: [PATCH] made loadFile a pure virtual function git-svn-id: svn://anubis/misc/FileLoader@174 bd8a9e45-a331-0410-811e-c64571078777 --- FileLoader.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/FileLoader.h b/FileLoader.h index 0eb8f56..df80fbe 100644 --- a/FileLoader.h +++ b/FileLoader.h @@ -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