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.
24 lines
426 B
C++
24 lines
426 B
C++
#ifndef _GUIDialogBase_H
|
|
#define _GUIDialogBase_H
|
|
|
|
#include "GUIWidgetAPI.h"
|
|
#include "FITK_Kernel/FITKCore/FITKAbstractGUI.h"
|
|
|
|
namespace GUI
|
|
{
|
|
class MainWindow;
|
|
|
|
class GUIWIDGETAPI GUIDialogBase : public Core::FITKDialog
|
|
{
|
|
Q_OBJECT;
|
|
public:
|
|
GUIDialogBase(QWidget* parent = nullptr);
|
|
virtual ~GUIDialogBase();
|
|
|
|
protected:
|
|
MainWindow* _mainWin = nullptr;
|
|
};
|
|
}
|
|
|
|
|
|
#endif |