Files
ThirdParty-6/ParaView-5.0.1/Examples/Plugins/DockWidget/ExampleDockPanel.h

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();
};