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
446 B
C++
22 lines
446 B
C++
#include "GUIWidgetBase.h"
|
|
|
|
#include "GUIFrame/MainWindow.h"
|
|
|
|
#include "FITK_Kernel/FITKAppFramework/FITKAppFramework.h"
|
|
#include "FITK_Kernel/FITKAppFramework/FITKGlobalData.h"
|
|
|
|
namespace GUI
|
|
{
|
|
GUI::GUIWidgetBase::GUIWidgetBase(QWidget* parent):
|
|
Core::FITKWidget(parent)
|
|
{
|
|
_mainWin = dynamic_cast<MainWindow*>(FITKAPP->getGlobalData()->getMainWindow());
|
|
}
|
|
|
|
GUI::GUIWidgetBase::~GUIWidgetBase()
|
|
{
|
|
|
|
}
|
|
}
|
|
|