NifTK  16.4.1 - 0798f20
CMIC's Translational Medical Imaging Platform
niftkIGIConfigurationDialog.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 niftkIGIConfigurationDialog_h
16 #define niftkIGIConfigurationDialog_h
17 
18 #include <niftkIGIDataSourcesExports.h>
19 #include <niftkIGIDataSourceI.h>
20 
21 #include <QMap>
22 #include <QVariant>
23 #include <QString>
24 #include <QDialog>
25 
26 namespace niftk
27 {
28 
33 class NIFTKIGIDATASOURCES_EXPORT IGIConfigurationDialog : public QDialog
34 {
35  Q_OBJECT
36 
37 public:
38  IGIConfigurationDialog(QWidget *parent, niftk::IGIDataSourceI::Pointer service);
40 
41 protected:
42  niftk::IGIDataSourceI::Pointer m_Service;
43 };
44 
45 } // end namespace
46 
47 #endif
niftk::IGIDataSourceI::Pointer m_Service
Definition: niftkIGIConfigurationDialog.h:42
Used to send parameters to and from the IGIDataSourceServiceI at runtime.
Definition: niftkIGIConfigurationDialog.h:33
Definition: niftkExceptionObject.h:21