| 22 | using namespace Internal; |
| 23 | |
| 24 | OrfImage::OrfImage(BasicIo::UniquePtr io, bool create) : |
| 25 | TiffImage(/*ImageType::orf, mdExif | mdIptc | mdXmp,*/ std::move(io), create) { |
| 26 | setTypeSupported(ImageType::orf, mdExif | mdIptc | mdXmp); |
| 27 | } // OrfImage::OrfImage |
| 28 | |
| 29 | std::string OrfImage::mimeType() const { |
| 30 | return "image/x-olympus-orf"; |
nothing calls this directly
no test coverage detected