X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FFeaturesPlugin%2FFeaturesPlugin_ExtrusionFuse.h;h=591bdb2e581f68f5e3efd18a557ee43d50087d12;hb=0325db75534c99a962d6c03f2619e1fcc04491b6;hp=558a02893cb9f4a62bd61b8f25b087edd7163740;hpb=b009697e108880aafb3e58579019ca432661955d;p=modules%2Fshaper.git diff --git a/src/FeaturesPlugin/FeaturesPlugin_ExtrusionFuse.h b/src/FeaturesPlugin/FeaturesPlugin_ExtrusionFuse.h index 558a02893..591bdb2e5 100644 --- a/src/FeaturesPlugin/FeaturesPlugin_ExtrusionFuse.h +++ b/src/FeaturesPlugin/FeaturesPlugin_ExtrusionFuse.h @@ -1,21 +1,39 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: FeaturesPlugin_ExtrusionFuse.h -// Created: 11 June 2015 -// Author: Dmitry Bobylev +// 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 +// #ifndef FeaturesPlugin_ExtrusionFuse_H_ #define FeaturesPlugin_ExtrusionFuse_H_ -#include +#include "FeaturesPlugin_ExtrusionBoolean.h" -/** \class FeaturesPlugin_ExtrusionFuse - * \ingroup Plugins - */ +/// \class FeaturesPlugin_ExtrusionFuse +/// \ingroup Plugins +/// \brief This feature allows to create sketch, extrude faces from this sketch and +/// fuse result with other objects in a single operation. class FeaturesPlugin_ExtrusionFuse : public FeaturesPlugin_ExtrusionBoolean { - public: - /// Feature kind. +public: + /// Use plugin manager for features creation. + FeaturesPlugin_ExtrusionFuse(); + + /// Feature kind. inline static const std::string& ID() { static const std::string MY_EXTRUSION_ID("ExtrusionFuse"); @@ -29,11 +47,8 @@ class FeaturesPlugin_ExtrusionFuse : public FeaturesPlugin_ExtrusionBoolean return MY_KIND; } - /// Use plugin manager for features creation. - FeaturesPlugin_ExtrusionFuse() - { - myBooleanOperationType = GeomAlgoAPI_Boolean::BOOL_FUSE; - } + /// Creates a new part document if needed. + FEATURESPLUGIN_EXPORT virtual void execute(); }; #endif