added walky

This commit is contained in:
k-a-z-u
2018-06-05 16:55:45 +02:00
parent 4563391938
commit 267aed29b0
9 changed files with 1695 additions and 0 deletions

24
walky/file.h Normal file
View File

@@ -0,0 +1,24 @@
#ifndef FILE_H
#define FILE_H
#include "string"
namespace File {
const std::string basePath = "/apps/paper/diss/code/walkModel/";
//const std::string basePath = "/mnt/vm/paper/diss/code/walkModel/";
const std::string dataPath = "/apps/paper/diss/data/";
//const std::string dataPath = "/mnt/vm/paper/diss/data";
static inline std::string get(const std::string& name) {
return basePath + name;
}
static inline std::string getData(const std::string& name) {
return dataPath + name;
}
}
#endif // FILE_H