Salome HOME
Make the correct order in the searching of shape by name algorithm
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_ConstraintCoincidence.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 // File:    SketchPlugin_ConstraintCoincidence.cpp
4 // Created: 08 May 2014
5 // Author:  Artem ZHIDKOV
6
7 #include "SketchPlugin_ConstraintCoincidence.h"
8
9 #include <ModelAPI_AttributeDouble.h>
10 #include <ModelAPI_Data.h>
11 #include <SketchPlugin_Point.h>
12
13 SketchPlugin_ConstraintCoincidence::SketchPlugin_ConstraintCoincidence()
14 {
15 }
16
17 void SketchPlugin_ConstraintCoincidence::initAttributes()
18 {
19   data()->addAttribute(SketchPlugin_Constraint::ENTITY_A(), ModelAPI_AttributeRefAttr::typeId());
20   data()->addAttribute(SketchPlugin_Constraint::ENTITY_B(), ModelAPI_AttributeRefAttr::typeId());
21 }
22
23 void SketchPlugin_ConstraintCoincidence::execute()
24 {
25 }
26