| 17 | #include <mitkCustomMimeType.h> |
| 18 | |
| 19 | mitk::ContourModelSetWriter::ContourModelSetWriter() : AbstractFileWriter(ContourModelSet::GetStaticNameOfClass()) |
| 20 | { |
| 21 | std::string category = "ContourModelSet File"; |
| 22 | mitk::CustomMimeType customMimeType; |
| 23 | customMimeType.SetCategory(category); |
| 24 | customMimeType.AddExtension("cnt_set"); |
| 25 | |
| 26 | this->SetDescription(category); |
| 27 | this->SetMimeType(customMimeType); |
| 28 | |
| 29 | RegisterService(); |
| 30 | } |
| 31 | |
| 32 | mitk::ContourModelSetWriter::ContourModelSetWriter(const mitk::ContourModelSetWriter &other) : AbstractFileWriter(other) |
| 33 | { |
nothing calls this directly
no test coverage detected