| 18 | bool ReaderActivity::isXtcFile(const std::string& path) { return FsHelpers::hasXtcExtension(path); } |
| 19 | |
| 20 | bool ReaderActivity::isTxtFile(const std::string& path) { |
| 21 | return FsHelpers::hasTxtExtension(path) || |
| 22 | FsHelpers::hasMarkdownExtension(path); // Treat .md as txt files (until we have a markdown reader) |
| 23 | } |
| 24 | |
| 25 | bool ReaderActivity::isBmpFile(const std::string& path) { return FsHelpers::hasBmpExtension(path); } |
| 26 |
nothing calls this directly
no test coverage detected