| 53 | |
| 54 | struct ProjectManager { |
| 55 | explicit ProjectManager(std::string outputPrefix, std::string _dataPath) |
| 56 | : outputPrefix(std::move(outputPrefix)) , dataPath(std::move(_dataPath)) |
| 57 | { |
| 58 | if (dataPath.empty()) |
| 59 | dataPath = "../data"; |
| 60 | } |
| 61 | |
| 62 | void addProject(ProjectInfo info); |
| 63 |
nothing calls this directly
no outgoing calls
no test coverage detected