| 31 | } |
| 32 | |
| 33 | void Utils::destroyFileReaderWriter() |
| 34 | { |
| 35 | delete fileReader; |
| 36 | fileReader = nullptr; |
| 37 | |
| 38 | delete fileWriter; |
| 39 | fileWriter = nullptr; |
| 40 | } |
| 41 | |
| 42 | void ::Utils::forEachFile(const std::string& directory, std::function<void(const std::string&, const std::string&, const std::string&)> fn, bool recursive) |
| 43 | { |
nothing calls this directly
no outgoing calls
no test coverage detected