Slicer  5.1
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
qSlicerSegmentationsReader.h
Go to the documentation of this file.
1 /*==============================================================================
2 
3  Copyright (c) Laboratory for Percutaneous Surgery (PerkLab)
4  Queen's University, Kingston, ON, Canada. All Rights Reserved.
5 
6  See COPYRIGHT.txt
7  or http://www.slicer.org/copyright/copyright.txt for details.
8 
9  Unless required by applicable law or agreed to in writing, software
10  distributed under the License is distributed on an "AS IS" BASIS,
11  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  See the License for the specific language governing permissions and
13  limitations under the License.
14 
15  This file was originally developed by Adam Rankin, PerkLab, Queen's University
16  and was supported through the Applied Cancer Research Unit program of Cancer Care
17  Ontario with funds provided by the Ontario Ministry of Health and Long-Term Care
18 
19 ==============================================================================*/
20 
21 #ifndef __qSlicerSegmentationsReader_h
22 #define __qSlicerSegmentationsReader_h
23 
24 // Slicer includes
25 #include "qSlicerFileReader.h"
26 class qSlicerSegmentationsReaderPrivate;
27 
28 // Slicer includes
30 
31 //-----------------------------------------------------------------------------
34  : public qSlicerFileReader
35 {
36  Q_OBJECT
37 public:
40  ~qSlicerSegmentationsReader() override;
41 
44 
45  QString description()const override;
46  IOFileType fileType()const override;
47  QStringList extensions()const override;
48  qSlicerIOOptions* options()const override;
49 
50  bool load(const IOProperties& properties) override;
51 
52 protected:
53  QScopedPointer<qSlicerSegmentationsReaderPrivate> d_ptr;
54 
55 private:
56  Q_DECLARE_PRIVATE(qSlicerSegmentationsReader);
57  Q_DISABLE_COPY(qSlicerSegmentationsReader);
58 };
59 
60 #endif
QStringList extensions() const override
void setSegmentationsLogic(vtkSlicerSegmentationsModuleLogic *segmentationsLogic)
IOFileType fileType() const override
Multiple readers can share the same file type.
bool load(const IOProperties &properties) override
Properties availables : fileMode, multipleFiles, fileType.
QScopedPointer< qSlicerSegmentationsReaderPrivate > d_ptr
qSlicerIOOptions * options() const override
vtkSlicerSegmentationsModuleLogic * segmentationsLogic() const
QString IOFileType
Definition: qSlicerIO.h:52
QString description() const override
Unique name of the reader/writer.
qSlicerSegmentationsReader(vtkSlicerSegmentationsModuleLogic *segmentationsLogic=nullptr, QObject *parent=nullptr)
~qSlicerSegmentationsReader() override