X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FFeaturesPlugin%2FFeaturesPlugin_ExtrusionCut.h;h=98707995e28f5466854e3a95ea7a68ad0c102697;hb=ea593bc59e7e9461f6c4e2afd3f24d621edb1011;hp=4879a0eb9e74ecf1ecec1b7c6e0be6777401adbf;hpb=d25d525b4321bcc0c2559beb30966952cd0bcc6c;p=modules%2Fshaper.git diff --git a/src/FeaturesPlugin/FeaturesPlugin_ExtrusionCut.h b/src/FeaturesPlugin/FeaturesPlugin_ExtrusionCut.h old mode 100755 new mode 100644 index 4879a0eb9..98707995e --- a/src/FeaturesPlugin/FeaturesPlugin_ExtrusionCut.h +++ b/src/FeaturesPlugin/FeaturesPlugin_ExtrusionCut.h @@ -1,25 +1,42 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: FeaturesPlugin_ExtrusionCut.h -// Created: 11 June 2015 -// Author: Dmitry Bobylev +// Copyright (C) 2014-2019 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 +// #ifndef FeaturesPlugin_ExtrusionCut_H_ #define FeaturesPlugin_ExtrusionCut_H_ -#include +#include "FeaturesPlugin_ExtrusionBoolean.h" -/** \class FeaturesPlugin_ExtrusionCut - * \ingroup Plugins - */ +/// \class FeaturesPlugin_ExtrusionCut +/// \ingroup Plugins +/// \brief This feature allows to create sketch, extrude faces from this sketch and +/// cut result from other objects in a single operation. class FeaturesPlugin_ExtrusionCut : public FeaturesPlugin_ExtrusionBoolean { - public: - /// Feature kind. +public: + /// Use plugin manager for features creation. + FeaturesPlugin_ExtrusionCut(); + + /// Feature kind. inline static const std::string& ID() { - static const std::string MY_REVOLUTION_ID("ExtrusionCut"); - return MY_REVOLUTION_ID; + static const std::string MY_EXTRUSION_ID("ExtrusionCut"); + return MY_EXTRUSION_ID; } /// \return the kind of a feature @@ -29,11 +46,8 @@ class FeaturesPlugin_ExtrusionCut : public FeaturesPlugin_ExtrusionBoolean return MY_KIND; } - /// Use plugin manager for features creation. - FeaturesPlugin_ExtrusionCut() - { - myBooleanOperationType = GeomAlgoAPI_Boolean::BOOL_CUT; - } + /// Creates a new part document if needed. + FEATURESPLUGIN_EXPORT virtual void execute(); }; #endif