Begin adding cfs to BoostAODE

This commit is contained in:
2023-10-10 11:52:39 +02:00
parent 7d8aca4f59
commit f288bbd6fa
13 changed files with 59 additions and 28 deletions

View File

@@ -1,11 +1,17 @@
#ifndef PATHS_H
#define PATHS_H
#include <string>
#include "DotEnv.h"
namespace platform {
class Paths {
public:
static std::string results() { return "results/"; }
static std::string excel() { return "excel/"; }
static std::string datasets()
{
auto env = platform::DotEnv();
return env.get("source_data");
}
};
}
#endif