| 53 | class FileTreeNode { |
| 54 | public: |
| 55 | FileTreeNode(const std::string& path) { |
| 56 | Path = std::filesystem::path(path); |
| 57 | Read = false; |
| 58 | } |
| 59 | |
| 60 | std::filesystem::path Path; |
| 61 | bool Read; |
nothing calls this directly
no outgoing calls
no test coverage detected