1 // Copyright (C) 2014-2021 CEA/DEN, EDF R&D
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.
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.
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
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #ifndef CollectionAPI_GroupAddition_H_
21 #define CollectionAPI_GroupAddition_H_
23 #include "CollectionAPI.h"
25 #include <CollectionPlugin_GroupAddition.h>
27 #include <ModelHighAPI_Interface.h>
28 #include <ModelHighAPI_Macro.h>
30 class ModelHighAPI_Dumper;
31 class ModelHighAPI_Selection;
33 /// \class CollectionAPI_GroupAddition
34 /// \ingroup CPPHighAPI
35 /// \brief Interface for Group Addition feature.
36 class CollectionAPI_GroupAddition : public ModelHighAPI_Interface
39 /// Constructor without values.
41 explicit CollectionAPI_GroupAddition(const std::shared_ptr<ModelAPI_Feature>& theFeature);
43 /// Constructor with values.
45 CollectionAPI_GroupAddition(const std::shared_ptr<ModelAPI_Feature>& theFeature,
46 const std::list<ModelHighAPI_Selection>& theGroupList);
50 virtual ~CollectionAPI_GroupAddition();
52 INTERFACE_1(CollectionPlugin_GroupAddition::ID(),
53 groupList, CollectionPlugin_GroupAddition::LIST_ID(),
54 ModelAPI_AttributeSelectionList, /** Group list*/)
58 void setGroupList(const std::list<ModelHighAPI_Selection>& theGroupList);
60 /// Dump wrapped feature
62 virtual void dump(ModelHighAPI_Dumper& theDumper) const;
65 /// Pointer on Group Addition object.
66 typedef std::shared_ptr<CollectionAPI_GroupAddition> GroupAdditionPtr;
68 /// \ingroup CPPHighAPI
69 /// \brief Create Group Addition feature.
71 GroupAdditionPtr addGroupAddition(const std::shared_ptr<ModelAPI_Document>& thePart,
72 const std::list<ModelHighAPI_Selection>& theGroupsList);
74 #endif // CollectionAPI_GroupAddition_H_