X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FFeaturesPlugin%2FFeaturesPlugin_Boolean.h;h=ce70e57bc619a23adb39ed2f23015eab795ec68b;hb=a55586483e5dccc5466d6ec241e2147e210d839f;hp=79d703174c72fae4afa847ed76a798e11263b17f;hpb=5f2dd854a118fb9dffec8658d1d234e6587c539f;p=modules%2Fshaper.git diff --git a/src/FeaturesPlugin/FeaturesPlugin_Boolean.h b/src/FeaturesPlugin/FeaturesPlugin_Boolean.h index 79d703174..ce70e57bc 100644 --- a/src/FeaturesPlugin/FeaturesPlugin_Boolean.h +++ b/src/FeaturesPlugin/FeaturesPlugin_Boolean.h @@ -1,11 +1,25 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D --> - -// File: FeaturesPlugin_Boolean.h -// Created: 02 Sept 2014 -// Author: Vitaly SMETANNIKOV - -#ifndef FeaturesPlugin_Cut_H_ -#define FeaturesPlugin_Cut_H_ +// 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_Boolean_H_ +#define FeaturesPlugin_Boolean_H_ #include "FeaturesPlugin.h" @@ -28,13 +42,6 @@ public: BOOL_SMASH }; - /// Feature kind. - inline static const std::string& ID() - { - static const std::string MY_ID("Boolean"); - return MY_ID; - } - /// Attribute name of main objects. inline static const std::string& OBJECT_LIST_ID() { @@ -49,19 +56,8 @@ public: return MY_TOOL_LIST_ID; } - /// Attribute name of operation type. - inline static const std::string& TYPE_ID() - { - static const std::string MY_TYPE_ID("bool_type"); - return MY_TYPE_ID; - } - - /// \return the kind of a feature. - FEATURESPLUGIN_EXPORT virtual const std::string& getKind() - { - static std::string MY_KIND = FeaturesPlugin_Boolean::ID(); - return MY_KIND; - } + /// \return boolean operation type. + FEATURESPLUGIN_EXPORT OperationType operationType(); /// Creates a new part document if needed. FEATURESPLUGIN_EXPORT virtual void execute(); @@ -69,8 +65,10 @@ public: /// Request for initialization of data model of the feature: adding all attributes. FEATURESPLUGIN_EXPORT virtual void initAttributes(); +protected: + /// Use plugin manager for features creation. - FeaturesPlugin_Boolean(); + FeaturesPlugin_Boolean(const OperationType theOperationType); private: std::shared_ptr getShape(const std::string& theAttrName); @@ -81,7 +79,11 @@ private: const ListOfShape& theTools, const std::shared_ptr theResultShape, GeomAlgoAPI_MakeShape& theMakeShape, - GeomAPI_DataMapOfShapeShape& theMapOfShapes); + GeomAPI_DataMapOfShapeShape& theMapOfShapes, + const bool theIsStoreAsGenerated = false); + +private: + OperationType myOperationType; }; #endif