/* 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); } }