NifTK  16.4.1 - 0798f20
CMIC's Translational Medical Imaging Platform
niftkBaseGUI.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 niftkBaseGUI_h
16 #define niftkBaseGUI_h
17 
18 #include <niftkCoreGuiExports.h>
19 
20 #include <QObject>
21 
22 class QWidget;
23 
24 namespace niftk
25 {
26 
29 class NIFTKCOREGUI_EXPORT BaseGUI : public QObject
30 {
31  Q_OBJECT
32 
33 public:
34 
35  BaseGUI(QWidget* parent);
36  virtual ~BaseGUI();
37 
38 public:
39 
41  QWidget* GetParent() const;
42 
43 };
44 
45 }
46 
47 #endif
Base class for GUI controls on BlueBerry views.
Definition: niftkBaseGUI.h:29
Definition: niftkExceptionObject.h:21