X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FFeaturesPlugin%2FFeaturesPlugin_RevolutionFuse.h;h=525ff4139cd908a69d86b1cc3ef1e53fd5f2c1d3;hb=5a5362530345c00af26fc8226f3066f749dde392;hp=75f16aa67e1818136e47659aad86e9dcdaf0aea7;hpb=77b93142eb8ba33bfb9a42040c2fd8926ffea5c8;p=modules%2Fshaper.git diff --git a/src/FeaturesPlugin/FeaturesPlugin_RevolutionFuse.h b/src/FeaturesPlugin/FeaturesPlugin_RevolutionFuse.h index 75f16aa67..525ff4139 100644 --- a/src/FeaturesPlugin/FeaturesPlugin_RevolutionFuse.h +++ b/src/FeaturesPlugin/FeaturesPlugin_RevolutionFuse.h @@ -1,23 +1,38 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: FeaturesPlugin_RevolutionFuse.h -// Created: 11 June 2015 -// Author: Dmitry Bobylev +// Copyright (C) 2014-2022 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_RevolutionFuse_H_ #define FeaturesPlugin_RevolutionFuse_H_ -#include +#include "FeaturesPlugin_RevolutionBoolean.h" -/** \class FeaturesPlugin_RevolutionFuse - * \ingroup Plugins - * \brief This feature allows to create sketch, revol faces from this sketch and - * fuse result with other objects in a single operation. - */ +/// \class FeaturesPlugin_RevolutionFuse +/// \ingroup Plugins +/// \brief This feature allows to create sketch, revol faces from this sketch and +/// fuse result with other objects in a single operation. class FeaturesPlugin_RevolutionFuse : public FeaturesPlugin_RevolutionBoolean { public: - /// Feature kind. + /// Use plugin manager for features creation. + FeaturesPlugin_RevolutionFuse(); + + /// Feature kind. inline static const std::string& ID() { static const std::string MY_REVOLUTION_ID("RevolutionFuse"); @@ -31,8 +46,8 @@ class FeaturesPlugin_RevolutionFuse : public FeaturesPlugin_RevolutionBoolean return MY_KIND; } - /// Use plugin manager for features creation. - FeaturesPlugin_RevolutionFuse(); + /// Performs the algorithm and stores results it in the data structure. + FEATURESPLUGIN_EXPORT virtual void execute(); }; #endif