| 40 | const std::string mitk::PointSetWriterService::VERSION_STRING = "0.1"; |
| 41 | |
| 42 | mitk::PointSetWriterService::PointSetWriterService() |
| 43 | : AbstractFileWriter( |
| 44 | PointSet::GetStaticNameOfClass(), CustomMimeType(IOMimeTypes::POINTSET_MIMETYPE()), "MITK Point Set Writer") |
| 45 | { |
| 46 | RegisterService(); |
| 47 | } |
| 48 | |
| 49 | mitk::PointSetWriterService::PointSetWriterService(const mitk::PointSetWriterService &other) : AbstractFileWriter(other) |
| 50 | { |
nothing calls this directly
no test coverage detected