Salome HOME
Refactoring: static constants are replaced by inline functions in:
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_Plugin.cpp
1 #include "SketchPlugin_Plugin.h"
2 #include "SketchPlugin_Sketch.h"
3 #include "SketchPlugin_Line.h"
4 #include "SketchPlugin_Point.h"
5 #include "SketchPlugin_Circle.h"
6 #include "SketchPlugin_Arc.h"
7 #include "SketchPlugin_ConstraintCoincidence.h"
8 #include "SketchPlugin_ConstraintDistance.h"
9 #include "SketchPlugin_ConstraintLength.h"
10 #include "SketchPlugin_ConstraintParallel.h"
11 #include "SketchPlugin_ConstraintPerpendicular.h"
12 #include "SketchPlugin_ConstraintRadius.h"
13 #include <ModelAPI_PluginManager.h>
14 #include <ModelAPI_Document.h>
15
16 using namespace std;
17
18 // the only created instance of this plugin
19 static SketchPlugin_Plugin* MY_INSTANCE = new SketchPlugin_Plugin();
20
21 SketchPlugin_Plugin::SketchPlugin_Plugin() 
22 {
23   // register this plugin
24   ModelAPI_PluginManager::get()->registerPlugin(this);
25 }
26
27 FeaturePtr SketchPlugin_Plugin::createFeature(string theFeatureID)
28 {
29   if (theFeatureID == SketchPlugin_Sketch::ID()) {
30     return FeaturePtr(new SketchPlugin_Sketch);
31   }
32   else if (theFeatureID == SketchPlugin_Point::ID()) {
33     return FeaturePtr(new SketchPlugin_Point);
34   }
35   else if (theFeatureID == SketchPlugin_Line::ID()) {
36     return FeaturePtr(new SketchPlugin_Line);
37   }
38   else if (theFeatureID == SketchPlugin_Circle::ID()) {
39     return FeaturePtr(new SketchPlugin_Circle);
40   }
41   else if (theFeatureID == SketchPlugin_Arc::ID()) {
42     return FeaturePtr(new SketchPlugin_Arc);
43   }
44   else if (theFeatureID == SketchPlugin_ConstraintCoincidence::ID()) {
45     return FeaturePtr(new SketchPlugin_ConstraintCoincidence);
46   }
47   else if (theFeatureID == SketchPlugin_ConstraintDistance::ID()) {
48     return FeaturePtr(new SketchPlugin_ConstraintDistance);
49   }
50   else if (theFeatureID == SketchPlugin_ConstraintLength::ID()) {
51     return FeaturePtr(new SketchPlugin_ConstraintLength);
52   }
53   else if (theFeatureID == SketchPlugin_ConstraintParallel::ID()) {
54     return FeaturePtr(new SketchPlugin_ConstraintParallel);
55   }
56   else if (theFeatureID == SketchPlugin_ConstraintPerpendicular::ID()) {
57     return FeaturePtr(new SketchPlugin_ConstraintPerpendicular);
58   }
59   else if (theFeatureID == SketchPlugin_ConstraintRadius::ID()) {
60     return FeaturePtr(new SketchPlugin_ConstraintRadius);
61   }
62   // feature of such kind is not found
63   return FeaturePtr();
64 }