Slicer  4.8
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
qSlicerIO.h
Go to the documentation of this file.
1 /*==============================================================================
2 
3  Program: 3D Slicer
4 
5  Copyright (c) Kitware Inc.
6 
7  See COPYRIGHT.txt
8  or http://www.slicer.org/copyright/copyright.txt for details.
9 
10  Unless required by applicable law or agreed to in writing, software
11  distributed under the License is distributed on an "AS IS" BASIS,
12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  See the License for the specific language governing permissions and
14  limitations under the License.
15 
16  This file was originally developed by Julien Finet, Kitware Inc.
17  and was partially funded by NIH grant 3P41RR013218-12S1
18 
19 ==============================================================================*/
20 
21 #ifndef __qSlicerIO_h
22 #define __qSlicerIO_h
23 
24 // Qt includes
25 #include <QMap>
26 #include <QMetaType>
27 #include <QObject>
28 #include <QString>
29 #include <QStringList>
30 #include <QVariant>
31 
32 // QtCore includes
33 #include "qSlicerBaseQTCoreExport.h"
34 #include "qSlicerObject.h"
35 
36 class qSlicerIOOptions;
37 
39 class Q_SLICER_BASE_QTCORE_EXPORT qSlicerIO
40  : public QObject
41  , public qSlicerObject
42 {
43  Q_OBJECT
44 
45 public:
46  typedef QObject Superclass;
47  explicit qSlicerIO(QObject* parent = 0);
48  virtual ~qSlicerIO();
49 
50  typedef QString IOFileType;
52 
54  virtual QString description()const = 0;
55 
57  virtual IOFileType fileType()const = 0;
58 
63  virtual qSlicerIOOptions* options()const;
64 
65 private:
66  Q_DISABLE_COPY(qSlicerIO);
67 };
68 
71 
72 #endif
Q_DECLARE_METATYPE(QList< QVariantMap >)
QVariantMap IOProperties
Definition: qSlicerIO.h:51
QObject Superclass
Definition: qSlicerIO.h:46
Base class for qSlicerFileReader and qSlicerFileWriter.
Definition: qSlicerIO.h:39
QString IOFileType
Definition: qSlicerIO.h:50