| 20 | const std::filesystem::path &Configuration::getCASCDir() { return _cascDir; } |
| 21 | |
| 22 | void Configuration::setDirectDir(std::filesystem::path newDir) { |
| 23 | this->_directDir = std::move(newDir); |
| 24 | } |
| 25 | |
| 26 | void Configuration::setCASCDir(std::filesystem::path newDir) { |
| 27 | this->_cascDir = std::move(newDir); |