NifTK  16.4.1 - 0798f20
CMIC's Translational Medical Imaging Platform
niftkCoordinateAxesDataReaderService.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 niftkCoordinateAxesDataReaderService_h
16 #define niftkCoordinateAxesDataReaderService_h
17 
18 #include <mitkAbstractFileReader.h>
19 
20 namespace niftk
21 {
22 
28 class CoordinateAxesDataReaderService: public mitk::AbstractFileReader
29 {
30 public:
31 
34 
35  virtual std::vector< itk::SmartPointer<mitk::BaseData> > Read() override;
36 
37 private:
38 
40  virtual CoordinateAxesDataReaderService* Clone() const override;
41 };
42 
43 }
44 
45 #endif
CoordinateAxesDataReaderService()
Definition: niftkCoordinateAxesDataReaderService.cxx:33
virtual ~CoordinateAxesDataReaderService()
Definition: niftkCoordinateAxesDataReaderService.cxx:49
Loads a 4x4 Matrix into a niftk::CoordinateAxesData.
Definition: niftkCoordinateAxesDataReaderService.h:28
virtual std::vector< itk::SmartPointer< mitk::BaseData > > Read() override
Definition: niftkCoordinateAxesDataReaderService.cxx:62
Definition: niftkExceptionObject.h:21