Slicer  5.3
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 class qSlicerIOPrivate;
39 
41 class Q_SLICER_BASE_QTCORE_EXPORT qSlicerIO
42  : public QObject
43  , public qSlicerObject
44 {
45  Q_OBJECT
46 
47 public:
48  typedef QObject Superclass;
49  explicit qSlicerIO(QObject* parent = nullptr);
50  ~qSlicerIO() override;
51 
52  typedef QString IOFileType;
54 
56  Q_INVOKABLE virtual QString description()const = 0;
57 
59  Q_INVOKABLE virtual IOFileType fileType()const = 0;
60 
65  Q_INVOKABLE virtual qSlicerIOOptions* options()const;
66 
68  Q_INVOKABLE vtkMRMLMessageCollection* userMessages()const;
69 
70 protected:
71  QScopedPointer<qSlicerIOPrivate> d_ptr;
72 
73 private:
74  Q_DECLARE_PRIVATE(qSlicerIO);
75  Q_DISABLE_COPY(qSlicerIO);
76 };
77 
80 
81 #endif
QScopedPointer< qSlicerIOPrivate > d_ptr
Definition: qSlicerIO.h:71
Q_DECLARE_METATYPE(qSlicerExtensionsManagerModel::ServerAPI)
QVariantMap IOProperties
Definition: qSlicerIO.h:53
QObject Superclass
Definition: qSlicerIO.h:48
Base class for qSlicerFileReader and qSlicerFileWriter.
Definition: qSlicerIO.h:41
QString IOFileType
Definition: qSlicerIO.h:52