Salome HOME
updated copyright message
[modules/shaper.git] / src / PrimitivesPlugin / PrimitivesPlugin_Plugin.cpp
1 // Copyright (C) 2014-2023  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include <PrimitivesPlugin_Plugin.h>
21
22 #include <PrimitivesPlugin_Box.h>
23 #include <PrimitivesPlugin_Cone.h>
24 #include <PrimitivesPlugin_Cylinder.h>
25 #include <PrimitivesPlugin_Sphere.h>
26 #include <PrimitivesPlugin_Torus.h>
27 #include <PrimitivesPlugin_Tube.h>
28
29 #include <ModelAPI_Session.h>
30
31 #include <string>
32 #include <memory>
33 #include <iostream>
34
35 // the only created instance of this plugin
36 static PrimitivesPlugin_Plugin* MY_PRIMITIVES_INSTANCE = new PrimitivesPlugin_Plugin();
37
38 PrimitivesPlugin_Plugin::PrimitivesPlugin_Plugin()
39 {
40   // register this plugin
41   ModelAPI_Session::get()->registerPlugin(this);
42 }
43
44 FeaturePtr PrimitivesPlugin_Plugin::createFeature(std::string theFeatureID)
45 {
46   if (theFeatureID == PrimitivesPlugin_Box::ID()) {
47     return FeaturePtr(new PrimitivesPlugin_Box);
48   } else if (theFeatureID == PrimitivesPlugin_Cone::ID()) {
49     return FeaturePtr(new PrimitivesPlugin_Cone);
50   } else if (theFeatureID == PrimitivesPlugin_Cylinder::ID()) {
51     return FeaturePtr(new PrimitivesPlugin_Cylinder);
52   } else if (theFeatureID == PrimitivesPlugin_Sphere::ID()) {
53     return FeaturePtr(new PrimitivesPlugin_Sphere);
54   } else if (theFeatureID == PrimitivesPlugin_Torus::ID()) {
55     return FeaturePtr(new PrimitivesPlugin_Torus);
56   } else if (theFeatureID == PrimitivesPlugin_Tube::ID()) {
57     return FeaturePtr(new PrimitivesPlugin_Tube);
58   }
59   // feature of such kind is not found
60   return FeaturePtr();
61 }