| 5 | #include "log.h" |
| 6 | |
| 7 | PropertyManager::PropertyManager(std::string path) : filePath(std::move(path)) { |
| 8 | loadFromFile(); |
| 9 | } |
| 10 | |
| 11 | bool PropertyManager::loadFromFile() { |
| 12 | orderedProps.clear(); |
nothing calls this directly
no outgoing calls
no test coverage detected