mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
12 lines
272 B
C++
12 lines
272 B
C++
#include "ExampleDockPanel.h"
|
|
#include "ui_ExampleDockPanel.h"
|
|
|
|
void ExampleDockPanel::constructor()
|
|
{
|
|
this->setWindowTitle("Example Dock Panel");
|
|
QWidget* t_widget = new QWidget(this);
|
|
Ui::ExampleDockPanel ui;
|
|
ui.setupUi(t_widget);
|
|
this->setWidget(t_widget);
|
|
}
|