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