]> SALOME platform Git repositories - modules/shaper.git/blob - src/SketchShapePlugin/SketchShapePlugin_Feature.cpp
Salome HOME
Construction of vertices/edges/faces on the base of sketch: a special group box in...
[modules/shaper.git] / src / SketchShapePlugin / SketchShapePlugin_Feature.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 // File:        SketchShapePlugin_Feature.cpp
4 // Created:     25 Nov 2015
5 // Author:      Natalia ERMOLAEVA
6
7 #include "SketchShapePlugin_Feature.h"
8
9 #include <ModelAPI_AttributeSelectionList.h>
10 #include <ModelAPI_AttributeBoolean.h>
11
12 SketchShapePlugin_Feature::SketchShapePlugin_Feature()
13 : ModelAPI_Feature()
14 {
15 }
16
17 void SketchShapePlugin_Feature::initAttributes()
18 {
19   data()->addAttribute(VERTEX_LIST_ID(), ModelAPI_AttributeSelectionList::typeId());
20   data()->addAttribute(VERTEX_CHOICE_ID(), ModelAPI_AttributeBoolean::typeId());
21 }
22
23 void SketchShapePlugin_Feature::execute()
24 {
25 }
26
27 void SketchShapePlugin_Feature::attributeChanged(const std::string& theID)
28 {
29 }
30