Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-02-08 19:24:12 +0000
committerStijn Buys <ingar@osirion.org>2008-02-08 19:24:12 +0000
commitd3477eedc113a2c126f36f41384b8921d610906a (patch)
tree68df921c4acf03878ae244db8350e2e96936c494 /src/filesystem/vfile.cc
parent598dba9d17838e92f89bcd3ec78c69cc4ce50044 (diff)
updated filesystem, removed inifile, updated game and tga loader
minor cleanups
Diffstat (limited to 'src/filesystem/vfile.cc')
-rw-r--r--src/filesystem/vfile.cc24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/filesystem/vfile.cc b/src/filesystem/vfile.cc
deleted file mode 100644
index 9fcb2b3..0000000
--- a/src/filesystem/vfile.cc
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- filesystem/vfile.cc
- This file is part of the Osirion project and is distributed under
- the terms of the GNU General Public License version 2
-*/
-
-// project headers
-#include "filesystem/vfile.h"
-
-namespace filesystem
-{
-
-std::string VFile::find(const char *filename)
-{
- return std::string();
-}
-
-
-bool VFile::exists(const char *filename)
-{
- return (find(filename).size() == 0);
-}
-
-}