/* common/path.h This file is part of the Osirion project and is distributed under the terms of the GNU General Public License version 2 */ #ifndef __INCLUDED_FILESYSTEM_PATH_H__ #define __INCLUDED_FILESYSTEM_PATH_H__ // C++ headers #include #include namespace filesystem { /// a class to create directories class Path { public: static bool exists(std::string path); static void create(std::string path); }; // class Path } // namespace filesystem #endif // __INCLUDED_FILESYSTEM_PATH_H__