| 28 | } |
| 29 | |
| 30 | fs::path CSettings::GetPath(unsigned int PathType) const { // // // |
| 31 | return PathType < std::size(Paths) ? Paths[PathType] : fs::current_path(); |
| 32 | } |
| 33 | |
| 34 | void CSettings::SetPath(fs::path PathName, unsigned int PathType) { // // // |
| 35 | if (PathType < std::size(Paths)) |
no test coverage detected