Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
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);
-}
-
-}