| 22 | namespace mitk |
| 23 | { |
| 24 | SceneFileReader::SceneFileReader() : AbstractFileReader() |
| 25 | { |
| 26 | CustomMimeType mimeType(IOMimeTypes::DEFAULT_BASE_NAME() + ".scene"); |
| 27 | mimeType.SetComment("MITK Scene Files"); |
| 28 | mimeType.SetCategory("MITK Scenes"); |
| 29 | mimeType.AddExtension("mitk"); |
| 30 | |
| 31 | this->SetDescription("MITK Scene Reader"); |
| 32 | this->SetMimeType(mimeType); |
| 33 | |
| 34 | this->RegisterService(); |
| 35 | } |
| 36 | |
| 37 | DataStorage::SetOfObjects::Pointer SceneFileReader::Read(DataStorage &ds) |
| 38 | { |
nothing calls this directly
no test coverage detected