]> SALOME platform Git repositories - modules/shaper.git/blob - src/PartSet/PartSet_OperationSketch.cpp
Salome HOME
Merge branch 'master' of newgeom:newgeom
[modules/shaper.git] / src / PartSet / PartSet_OperationSketch.cpp
1 #include <PartSet_OperationSketch.h>
2
3 #include <SketchPlugin_Feature.h>
4
5 #ifdef _DEBUG
6 #include <QDebug>
7 #endif
8
9 using namespace std;
10
11 PartSet_OperationSketch::PartSet_OperationSketch(const QString& theId,
12                                                      QObject* theParent)
13 : PartSet_OperationSketchBase(theId, theParent)
14 {
15 }
16
17 /*!
18  * \brief Destructor
19  */
20 PartSet_OperationSketch::~PartSet_OperationSketch()
21 {
22 }
23
24 /**
25  * The sketch can not be created immediately, firstly a plane should be set
26  * \return false value
27  */
28 bool PartSet_OperationSketch::isPerformedImmediately() const
29 {
30   return false;
31 }