This repository has been archived on 2020-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
Files
DSem1/walky/file.h
2018-06-06 08:56:58 +02:00

25 lines
539 B
C++

#ifndef FILE_H
#define FILE_H
#include "string"
namespace File {
const std::string basePath = "/apps/paper/DSem1/walky/";
//const std::string basePath = "/mnt/vm/paper/diss/code/walkModel/";
const std::string dataPath = "/apps/paper/DSem1/walky/";
//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