Salome HOME
cded766a63c4e1a08dee4816b9421fa9735e6b1c
[modules/paravis.git] / src / Plugins / View / MyDisplay.cxx
1
2 #include "MyDisplay.h"
3
4 #include <QVBoxLayout>
5 #include <QLabel>
6
7 MyDisplay::MyDisplay(pqRepresentation* d, QWidget* p)
8   : pqDisplayPanel(d,p)
9 {
10   // just make a label that shows we made it in the GUI
11   QVBoxLayout* l = new QVBoxLayout(this);
12   l->addWidget(new QLabel("From Plugin", this));
13 }
14
15 MyDisplay::~MyDisplay()
16 {
17 }
18