1 // Copyright (C) 2014-2017 CEA/DEN, EDF R&D
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.
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.
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
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
21 #include <PrimitivesPlugin_Plugin.h>
23 #include <PrimitivesPlugin_Box.h>
24 #include <PrimitivesPlugin_Cone.h>
25 #include <PrimitivesPlugin_Cylinder.h>
26 #include <PrimitivesPlugin_Sphere.h>
27 #include <PrimitivesPlugin_Torus.h>
29 #include <ModelAPI_Session.h>
35 // the only created instance of this plugin
36 static PrimitivesPlugin_Plugin* MY_PRIMITIVES_INSTANCE = new PrimitivesPlugin_Plugin();
38 PrimitivesPlugin_Plugin::PrimitivesPlugin_Plugin()
40 // register this plugin
41 ModelAPI_Session::get()->registerPlugin(this);
44 FeaturePtr PrimitivesPlugin_Plugin::createFeature(std::string theFeatureID)
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);
57 // feature of such kind is not found