| 47 | }; |
| 48 | |
| 49 | FileReaderSelector::FileReaderSelector(const FileReaderSelector &other) : m_Data(other.m_Data) {} |
| 50 | FileReaderSelector::FileReaderSelector(const std::string &path) : m_Data(new Impl) |
| 51 | { |
| 52 | if (!itksys::SystemTools::FileExists(Utf8Util::Local8BitToUtf8(path).c_str())) |
nothing calls this directly
no test coverage detected