FileSystem.hpp
1 #ifndef CPP3DS_FILESYSTEM_H
2 #define CPP3DS_FILESYSTEM_H
3 
4 #include <cpp3ds/Config.hpp>
5 #include <string>
6 #ifndef EMULATION
7 #include <3ds.h>
8 #endif
9 
10 namespace cpp3ds {
11 
12 class FileSystem {
13 public:
14  static const std::string getFilePath(const std::string& filename);
15 };
16 
17 } // namespace cpp3ds
18 
19 
20 #endif //CPP3DS_FILESYSTEM_H
21 
22 
27 ////////////////////////////////////////////////////////////