Salome HOME
a35aaf75f688a66128dfb70e8dab386f70a86552
[modules/shaper.git] / ModuleBase_PropPanelOperation.cpp
1 /*
2  * ModuleBase_PropPanelOperation.cpp
3  *
4  *  Created on: Apr 2, 2014
5  *      Author: sbh
6  */
7
8 #include <ModuleBase_PropPanelOperation.h>
9 #include <QString>
10
11 /*!
12  \brief Constructor
13  \param XGUI_Workshop - workshop for this operation
14
15  Constructs an empty operation. Constructor should work very fast because many
16  operators may be created after starting workshop but only several from them
17  may be used. As result this constructor stores given workshop in myApp field
18  and set Waiting status.
19  */
20 ModuleBase_PropPanelOperation::ModuleBase_PropPanelOperation(const QString& theId, QObject* parent)
21 : ModuleBase_Operation(theId, parent)
22 {
23 }
24
25 /*!
26  * \brief Destructor
27  */
28 ModuleBase_PropPanelOperation::~ModuleBase_PropPanelOperation()
29 {
30
31 }
32