| 13 | |
| 14 | |
| 15 | File::File(const std::string & filePath, bool binary) |
| 16 | : m_filePath(filePath) |
| 17 | , m_binary(binary) |
| 18 | , m_valid(false) |
| 19 | { |
| 20 | FileRegistry::registerFile(this); |
| 21 | } |
| 22 | |
| 23 | File::~File() |
| 24 | { |
nothing calls this directly
no outgoing calls
no test coverage detected