Medical Imaging Interaction Toolkit  2016.11.0
Medical Imaging Interaction Toolkit
mitkSimulationIO.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 mitkSimulationIO_h
18 #define mitkSimulationIO_h
19 
20 #include <mitkAbstractFileIO.h>
21 #include <MitkSimulationExports.h>
22 
23 namespace mitk
24 {
25  class MITKSIMULATION_EXPORT SimulationIO : public AbstractFileIO
26  {
27  public:
28  SimulationIO();
29 
31  std::vector<BaseData::Pointer> Read() override;
32  ConfidenceLevel GetReaderConfidenceLevel() const override;
33 
34  void Write() override;
35  ConfidenceLevel GetWriterConfidenceLevel() const override;
36 
37  private:
38  SimulationIO* IOClone() const override;
39  };
40 }
41 
42 #endif
DataCollection - Class to facilitate loading/accessing structured data.
virtual std::vector< itk::SmartPointer< BaseData > > Read() override=0
Reads a path or stream and creates a list of BaseData objects.
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.