From 43b994017a560a2fa97894ebfe121375d6614b6f Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sun, 3 Feb 2008 18:53:40 +0000 Subject: basic client console --- src/filesystem/vfile.cc | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/filesystem/vfile.cc (limited to 'src/filesystem/vfile.cc') diff --git a/src/filesystem/vfile.cc b/src/filesystem/vfile.cc new file mode 100644 index 0000000..9fcb2b3 --- /dev/null +++ b/src/filesystem/vfile.cc @@ -0,0 +1,24 @@ +/* + 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); +} + +} -- cgit v1.2.3