NifTK  16.4.1 - 0798f20
CMIC's Translational Medical Imaging Platform
niftkPNMWriterService.h
Go to the documentation of this file.
1 /*=============================================================================
2 
3  NifTK: A software platform for medical image computing.
4 
5  Copyright (c) University College London (UCL). All rights reserved.
6 
7  This software is distributed WITHOUT ANY WARRANTY; without even
8  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
9  PURPOSE.
10 
11  See LICENSE.txt in the top level directory for details.
12 
13 =============================================================================*/
14 
15 #ifndef niftkPNMWriterService_h
16 #define niftkPNMWriterService_h
17 
18 #include <mitkAbstractFileWriter.h>
19 
20 namespace niftk
21 {
22 
27 class PNMWriterService : public mitk::AbstractFileWriter
28 {
29 public:
30 
32  virtual ~PNMWriterService();
33 
34  virtual void Write() override;
35 
36 private:
37 
38  PNMWriterService(const PNMWriterService & other);
39  virtual PNMWriterService * Clone() const override;
40 };
41 
42 }
43 
44 #endif
virtual void Write() override
Definition: niftkPNMWriterService.cxx:62
virtual ~PNMWriterService()
Definition: niftkPNMWriterService.cxx:49
PNMWriterService()
Definition: niftkPNMWriterService.cxx:32
Definition: niftkExceptionObject.h:21
Definition: niftkPNMWriterService.h:27