Salome HOME
9d5284184073bcd0f10f58f46ae7b26963ec1774
[modules/shaper.git] / src / CollectionPlugin / CollectionPlugin_GroupShape.h
1 // Copyright (C) 2014-2023  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef COLLECTIONPLUGIN_GROUPSHAPE_H_
21 #define COLLECTIONPLUGIN_GROUPSHAPE_H_
22
23 #include "CollectionPlugin.h"
24 #include "CollectionPlugin_GroupOperation.h"
25 #include "CollectionPlugin_GroupMerge.h"
26
27 /**\class CollectionPlugin_GroupShape
28  * \ingroup Plugins
29  * \brief Merge several groups of different shape type into a single shape.
30  */
31 class CollectionPlugin_GroupShape: public CollectionPlugin_GroupMerge
32 {
33 public:
34   /// Extrusion kind
35   inline static const std::string& ID()
36   {
37     static const std::string MY_GROUP_ID("GroupShape");
38     return MY_GROUP_ID;
39   }
40
41   /// Returns the kind of a feature
42   COLLECTIONPLUGIN_EXPORT virtual const std::string& getKind()
43   {
44     static std::string MY_KIND = CollectionPlugin_GroupShape::ID();
45     return MY_KIND;
46   }
47
48   /// Creates a new group result if needed
49   COLLECTIONPLUGIN_EXPORT void execute();
50
51   /// Use plugin manager for features creation
52   CollectionPlugin_GroupShape() = default;
53
54 };
55
56 #endif