Add class Paths and enhance input

This commit is contained in:
2023-08-14 00:40:31 +02:00
parent 3691cb4a61
commit 55d21294d5
6 changed files with 98 additions and 60 deletions

10
src/Platform/Paths.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef PATHS_H
#define PATHS_H
namespace platform {
class Paths {
public:
static std::string datasets() { return "datasets/"; }
static std::string results() { return "results/"; }
};
}
#endif