Salome HOME
Fix for the issue #1766 : treat face as equal with different orientation to find...
[modules/shaper.git] / src / FeaturesAPI / FeaturesAPI_Group.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 // File:        FeaturesAPI_Group.h
4 // Created:     07 June 2016
5 // Author:      Dmitry Bobylev
6
7 #ifndef FeaturesAPI_Group_H_
8 #define FeaturesAPI_Group_H_
9
10 #include "FeaturesAPI.h"
11
12 #include <FeaturesPlugin_Group.h>
13
14 #include <ModelHighAPI_Interface.h>
15 #include <ModelHighAPI_Macro.h>
16
17 class ModelHighAPI_Dumper;
18 class ModelHighAPI_Selection;
19
20 /// \class FeaturesAPI_Group
21 /// \ingroup CPPHighAPI
22 /// \brief Interface for Group feature.
23 class FeaturesAPI_Group: public ModelHighAPI_Interface
24 {
25 public:
26   /// Constructor without values.
27   FEATURESAPI_EXPORT
28   explicit FeaturesAPI_Group(const std::shared_ptr<ModelAPI_Feature>& theFeature);
29
30   /// Constructor with values.
31   FEATURESAPI_EXPORT
32   FeaturesAPI_Group(const std::shared_ptr<ModelAPI_Feature>& theFeature,
33                     const std::list<ModelHighAPI_Selection>& theGroupList);
34
35   /// Destructor.
36   FEATURESAPI_EXPORT
37   virtual ~FeaturesAPI_Group();
38
39   INTERFACE_1(FeaturesPlugin_Group::ID(),
40               groupList, FeaturesPlugin_Group::LIST_ID(), ModelAPI_AttributeSelectionList, /** Group list*/)
41
42   /// Set main objects.
43   FEATURESAPI_EXPORT
44   void setGroupList(const std::list<ModelHighAPI_Selection>& theGroupList);
45
46   /// Dump wrapped feature
47   FEATURESAPI_EXPORT
48   virtual void dump(ModelHighAPI_Dumper& theDumper) const;
49 };
50
51 /// Pointer on Group object.
52 typedef std::shared_ptr<FeaturesAPI_Group> GroupPtr;
53
54 /// \ingroup CPPHighAPI
55 /// \brief Create Group feature.
56 FEATURESAPI_EXPORT
57 GroupPtr addGroup(const std::shared_ptr<ModelAPI_Document>& thePart,
58                   const std::list<ModelHighAPI_Selection>& theGroupList);
59
60 #endif // FeaturesAPI_Group_H_