You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
423 B
C++
22 lines
423 B
C++
#ifndef GUIWidgetBase_H
|
|
#define GUIWidgetBase_H
|
|
|
|
#include "GUIWidgetAPI.h"
|
|
#include "FITK_Kernel/FITKCore/FITKAbstractGUI.h"
|
|
|
|
namespace GUI
|
|
{
|
|
class MainWindow;
|
|
|
|
class GUIWIDGETAPI GUIWidgetBase : public Core::FITKWidget
|
|
{
|
|
Q_OBJECT;
|
|
public:
|
|
GUIWidgetBase(QWidget* parent = nullptr);
|
|
virtual ~GUIWidgetBase();
|
|
|
|
protected:
|
|
MainWindow* _mainWin = nullptr;
|
|
};
|
|
}
|
|
#endif |