X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FFeaturesPlugin%2FFeaturesPlugin_Plugin.h;h=bf470612365dfe8d2d4fa38a362af750fba4120d;hb=a046d5af78f8d7b65551d3c68ca71cff33470fe2;hp=3ec8c12394cb4fdcd25a058db80749a363934f05;hpb=72ccabc2a906e229fe487dfeae61d38f921927d0;p=modules%2Fshaper.git diff --git a/src/FeaturesPlugin/FeaturesPlugin_Plugin.h b/src/FeaturesPlugin/FeaturesPlugin_Plugin.h index 3ec8c1239..bf4706123 100644 --- a/src/FeaturesPlugin/FeaturesPlugin_Plugin.h +++ b/src/FeaturesPlugin/FeaturesPlugin_Plugin.h @@ -1,23 +1,41 @@ -// File: FeaturesPlugin_Plugin.hxx -// Created: 07 July 2014 -// Author: Vitaly SMETANNIKOV - -#ifndef FeaturesPlugin_Plugin_HeaderFile -#define FeaturesPlugin_Plugin_HeaderFile +// 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_Plugin_H_ +#define FeaturesPlugin_Plugin_H_ #include "FeaturesPlugin.h" #include #include -class FEATURESPLUGIN_EXPORT FeaturesPlugin_Plugin: public ModelAPI_Plugin +/**\class FeaturesPlugin_Plugin + * \ingroup Plugins + * \brief The main class for management the 3D features as plugin. + */ +class FEATURESPLUGIN_EXPORT FeaturesPlugin_Plugin : public ModelAPI_Plugin { -public: + public: /// Creates the feature object of this plugin by the feature string ID virtual FeaturePtr createFeature(std::string theFeatureID); -public: - /// Is needed for python wrapping by swig + public: + /// Default constructor FeaturesPlugin_Plugin(); };