GameKit  0.0.1a
C++ gamedev tools
Filesystem.hpp
Go to the documentation of this file.
1 /*
2  * =====================================================================================
3  *
4  * Filename: Filesystem.hpp
5  *
6  * Description:
7  *
8  * Created: 22/02/2015 16:25:51
9  *
10  * Author: Quentin Bazin, <quent42340@gmail.com>
11  *
12  * =====================================================================================
13  */
14 #ifndef GK_FILESYSTEM_HPP_
15 #define GK_FILESYSTEM_HPP_
16 
17 #include <string>
18 
19 namespace gk {
20 
21 class Filesystem {
22  public:
23  static bool fileExists(const std::string &filename);
24 };
25 
26 } // namespace gk
27 
28 #endif // GK_FILESYSTEM_HPP_
static bool fileExists(const std::string &filename)
Definition: Filesystem.cpp:21