mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
17 lines
384 B
C++
17 lines
384 B
C++
|
|
#include <QDockWidget>
|
|
|
|
|
|
class ExampleDockPanel : public QDockWidget
|
|
{
|
|
Q_OBJECT
|
|
typedef QDockWidget Superclass;
|
|
public:
|
|
ExampleDockPanel(const QString &t, QWidget* p = 0, Qt::WindowFlags f=0):
|
|
Superclass(t, p, f) { this->constructor(); }
|
|
ExampleDockPanel(QWidget *p=0, Qt::WindowFlags f=0):
|
|
Superclass(p, f) { this->constructor(); }
|
|
private:
|
|
void constructor();
|
|
};
|