Files
BayesNet/src/Platform/Paths.h

11 lines
232 B
C++

#ifndef PATHS_H
#define PATHS_H
#include <string>
namespace platform {
class Paths {
public:
static std::string results() { return "results/"; }
static std::string excel() { return "excel/"; }
};
}
#endif