cheshirekow  v0.1.0
path_util.h
Go to the documentation of this file.
1 #ifndef MPBLOCKS_UTIL_PATH_UTIL_H_
2 #define MPBLOCKS_UTIL_PATH_UTIL_H_
3 
4 #include <string>
5 
6 namespace mpblocks {
7 namespace path_util {
8 
9 // path to the mpblocks source tree
10 std::string GetSourcePath();
11 
12 // path to the mpblocks build tree
13 std::string GetBuildPath();
14 
15 // path to the mpblocks installed resource tree
16 std::string GetResourcePath();
17 
18 // path to the mpblocks runtime settings tree
19 std::string GetPreferencesPath();
20 
21 
22 } // namespace path_util
23 } // namespace mpblocks
24 
25 #endif // MPBLOCKS_UTIL_PATH_UTIL_H_
std::string GetPreferencesPath()
std::string GetResourcePath()
std::string GetSourcePath()
std::string GetBuildPath()