Salome HOME
Merge branch 'master' of newgeom:newgeom
[modules/shaper.git] / src / PartSet / PartSet_OperationSketch.cpp
1 // File:        PartSet_OperationSketch.h
2 // Created:     20 Apr 2014
3 // Author:      Natalia ERMOLAEVA
4
5 #include <PartSet_OperationSketch.h>
6
7 #include <SketchPlugin_Feature.h>
8
9 #ifdef _DEBUG
10 #include <QDebug>
11 #endif
12
13 using namespace std;
14
15 PartSet_OperationSketch::PartSet_OperationSketch(const QString& theId,
16                                                      QObject* theParent)
17 : PartSet_OperationSketchBase(theId, theParent)
18 {
19 }
20
21 PartSet_OperationSketch::~PartSet_OperationSketch()
22 {
23 }
24
25 bool PartSet_OperationSketch::isPerformedImmediately() const
26 {
27   return false;
28 }
29
30 int PartSet_OperationSketch::getSelectionMode() const
31 {
32   return TopAbs_FACE;
33 }