Medical Imaging Interaction Toolkit  2016.11.0
Medical Imaging Interaction Toolkit
mitkMAPRegistrationWrapperIO.h
Go to the documentation of this file.
1 /*===================================================================
2 
3 The Medical Imaging Interaction Toolkit (MITK)
4 
5 Copyright (c) German Cancer Research Center,
6 Division of Medical and Biological Informatics.
7 All rights reserved.
8 
9 This software is distributed WITHOUT ANY WARRANTY; without
10 even the implied warranty of MERCHANTABILITY or FITNESS FOR
11 A PARTICULAR PURPOSE.
12 
13 See LICENSE.txt or http://www.mitk.org for details.
14 
15 ===================================================================*/
16 
17 #ifndef _MITK_MAP_REGISTRATION_WRAPPER_IO_H
18 #define _MITK_MAP_REGISTRATION_WRAPPER_IO_H
19 
20 #include <mitkAbstractFileIO.h>
21 
23 
24 namespace mitk
25 {
30  {
31  public:
32 
34 
35  // -------------- AbstractFileReader -------------
37  virtual std::vector<itk::SmartPointer<BaseData> > Read();
38 
40 
41  // -------------- AbstractFileWriter -------------
42  virtual void Write();
44 
45  private:
47  MAPRegistrationWrapperIO* IOClone() const;
48  };
49 
50 
51 } // end of namespace mitk
52 
53 #endif
virtual void Write()
Write the base data to the specified location or output stream.
DataCollection - Class to facilitate loading/accessing structured data.
virtual std::vector< itk::SmartPointer< BaseData > > Read()
Reads a path or stream and creates a list of BaseData objects.
virtual std::vector< itk::SmartPointer< BaseData > > Read() override=0
Reads a path or stream and creates a list of BaseData objects.
virtual ConfidenceLevel GetWriterConfidenceLevel() const
virtual ConfidenceLevel GetReaderConfidenceLevel() const
ConfidenceLevel
A confidence level describing the confidence of the reader or writer in handling the given data...
Definition: mitkIFileIO.h:49
Abstract class for implementing a reader and writer.