/* filesystem/file.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/file.h" namespace filesystem { File::File() {} File::~File() {} FILE *File::handle() { return 0; } } // namespace filesystem