NifTK  16.4.1 - 0798f20
CMIC's Translational Medical Imaging Platform
niftkCoordinateAxesDataWriterService.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 niftkCoordinateAxesDataWriterService_h
16 #define niftkCoordinateAxesDataWriterService_h
17 
18 #include <mitkAbstractFileWriter.h>
19 
20 namespace niftk
21 {
22 
28 class CoordinateAxesDataWriterService : public mitk::AbstractFileWriter
29 {
30 public:
31 
34 
35  virtual void Write() override;
36 
37 private:
38 
40  virtual CoordinateAxesDataWriterService* Clone() const override;
41 };
42 
43 }
44 
45 #endif
Saves a niftk::CoordinateAxesData into a 4x4 Matrix text file.
Definition: niftkCoordinateAxesDataWriterService.h:28
virtual void Write() override
Definition: niftkCoordinateAxesDataWriterService.cxx:55
CoordinateAxesDataWriterService()
Definition: niftkCoordinateAxesDataWriterService.cxx:25
virtual ~CoordinateAxesDataWriterService()
Definition: niftkCoordinateAxesDataWriterService.cxx:42
Definition: niftkExceptionObject.h:21