18inline std::filesystem::path
operator+(
const std::filesystem::path &lhs,
const std::string &rhs)
20 const std::filesystem::path temp{ rhs };
25namespace fs = std::filesystem;
29const auto root_folder = fs::path(SLIDE_ROOT_DIR).make_preferred();
31const static fs::path root_folder{
"../.." };
34const static fs::path results_folder =
"results";
35const static fs::path data_folder =
"data";
37static fs::path results = root_folder / results_folder;
38static fs::path data = root_folder / data_folder;
42const static std::string namepos{
"Kokam_OCV_NMC.csv" };
43const static std::string nameneg{
"Kokam_OCV_C.csv" };
44const static std::string nameentropicC{
"Kokam_entropic_C.csv" };
45const static std::string nameentropicCell{
"Kokam_entropic_cell.csv" };
Definition: slide_paths.hpp:24
Definition: slide_paths.hpp:41
std::filesystem::path operator+(const std::filesystem::path &lhs, const std::string &rhs)
Definition: slide_paths.hpp:18