X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPrimitivesPlugin%2FPrimitivesPlugin_Plugin.cpp;h=f190df93edac29db58a8ecad3b7fcbdc97721547;hb=f60dc9dd94d5d4b0ea07e3e3cbfd5b3028f0942d;hp=bf3e1716c034b8933e2c194c13d556d16debc16e;hpb=1c292b5bf95e18a6c8fbe407c532213e10c673c5;p=modules%2Fshaper.git diff --git a/src/PrimitivesPlugin/PrimitivesPlugin_Plugin.cpp b/src/PrimitivesPlugin/PrimitivesPlugin_Plugin.cpp index bf3e1716c..f190df93e 100644 --- a/src/PrimitivesPlugin/PrimitivesPlugin_Plugin.cpp +++ b/src/PrimitivesPlugin/PrimitivesPlugin_Plugin.cpp @@ -1,12 +1,31 @@ -// Copyright (C) 2014-2016 CEA/DEN, EDF R&D --> - -// File: PrimitivesPlugin_Plugin.hxx -// Created: 29 Mar 2016 -// Author: Clarisse Genrault (CEA) +// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or +// email : webmaster.salome@opencascade.com +// #include #include +#include +#include +#include +#include + #include #include @@ -26,6 +45,14 @@ FeaturePtr PrimitivesPlugin_Plugin::createFeature(std::string theFeatureID) { if (theFeatureID == PrimitivesPlugin_Box::ID()) { return FeaturePtr(new PrimitivesPlugin_Box); + } else if (theFeatureID == PrimitivesPlugin_Cone::ID()) { + return FeaturePtr(new PrimitivesPlugin_Cone); + } else if (theFeatureID == PrimitivesPlugin_Cylinder::ID()) { + return FeaturePtr(new PrimitivesPlugin_Cylinder); + } else if (theFeatureID == PrimitivesPlugin_Sphere::ID()) { + return FeaturePtr(new PrimitivesPlugin_Sphere); + } else if (theFeatureID == PrimitivesPlugin_Torus::ID()) { + return FeaturePtr(new PrimitivesPlugin_Torus); } // feature of such kind is not found return FeaturePtr();