Salome HOME
Merge remote-tracking branch 'remotes/origin/EDF_2020_Lot2'
[modules/shaper.git] / src / PrimitivesPlugin / PrimitivesPlugin_Plugin.cpp
1 // Copyright (C) 2014-2020  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
28 #include <ModelAPI_Session.h>
29
30 #include <string>
31 #include <memory>
32 #include <iostream>
33
34 // the only created instance of this plugin
35 static PrimitivesPlugin_Plugin* MY_PRIMITIVES_INSTANCE = new PrimitivesPlugin_Plugin();
36
37 PrimitivesPlugin_Plugin::PrimitivesPlugin_Plugin()
38 {
39   // register this plugin
40   ModelAPI_Session::get()->registerPlugin(this);
41 }
42
43 FeaturePtr PrimitivesPlugin_Plugin::createFeature(std::string theFeatureID)
44 {
45   if (theFeatureID == PrimitivesPlugin_Box::ID()) {
46     return FeaturePtr(new PrimitivesPlugin_Box);
47   } else if (theFeatureID == PrimitivesPlugin_Cone::ID()) {
48     return FeaturePtr(new PrimitivesPlugin_Cone);
49   } else if (theFeatureID == PrimitivesPlugin_Cylinder::ID()) {
50     return FeaturePtr(new PrimitivesPlugin_Cylinder);
51   } else if (theFeatureID == PrimitivesPlugin_Sphere::ID()) {
52     return FeaturePtr(new PrimitivesPlugin_Sphere);
53   } else if (theFeatureID == PrimitivesPlugin_Torus::ID()) {
54     return FeaturePtr(new PrimitivesPlugin_Torus);
55   }
56   // feature of such kind is not found
57   return FeaturePtr();
58 }