NifTK  16.4.1 - 0798f20
CMIC's Translational Medical Imaging Platform
niftkIGIInitialisationDialog.h
Go to the documentation of this file.
1 /*=============================================================================
2 
3  NifTK: A software platform for medical image computing.
4 
5  Copyright (c) University College London (UCL). All rights reserved.
6 
7  This software is distributed WITHOUT ANY WARRANTY; without even
8  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
9  PURPOSE.
10 
11  See LICENSE.txt in the top level directory for details.
12 
13 =============================================================================*/
14 
15 #ifndef niftkIGIInitialisationDialog_h
16 #define niftkIGIInitialisationDialog_h
17 
18 #include <niftkIGIDataSourcesExports.h>
19 #include <niftkIGIDataSourceI.h>
20 
21 #include <QWidget>
22 #include <QDialog>
23 
24 namespace niftk
25 {
26 
34 class NIFTKIGIDATASOURCES_EXPORT IGIInitialisationDialog : public QDialog
35 {
36  Q_OBJECT
37 
38 public:
39  IGIInitialisationDialog(QWidget *parent);
41 
42  virtual IGIDataSourceProperties GetProperties() const;
43 
44 protected:
45 
47 };
48 
49 } // end namespace
50 
51 #endif
Initialisation dialogs must export their properties on completion.
Definition: niftkIGIInitialisationDialog.h:34
QMap< QString, QVariant > IGIDataSourceProperties
Definition: niftkIGIDataSourceI.h:33
IGIDataSourceProperties m_Properties
Definition: niftkIGIInitialisationDialog.h:46
Definition: niftkExceptionObject.h:21