SHAPER 9.16.0
FeaturesAPI_SharedFaces.h
1// Copyright (C) 2018-2026 CEA, EDF
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 FeaturesAPI_SharedFaces_H_
21#define FeaturesAPI_SharedFaces_H_
22
23#include "FeaturesAPI.h"
24
25#include "FeaturesPlugin_GroupSharedFaces.h"
26
27#include <ModelHighAPI_Integer.h>
28#include <ModelHighAPI_Interface.h>
29#include <ModelHighAPI_Macro.h>
30
33
38{
39public:
41 FEATURESAPI_EXPORT
42 explicit FeaturesAPI_SharedFaces(const std::shared_ptr<ModelAPI_Feature>& theFeature);
43
44 FEATURESAPI_EXPORT
45 explicit FeaturesAPI_SharedFaces(const std::shared_ptr<ModelAPI_Feature>& theFeature,
46 const ModelHighAPI_Selection& theObject,
47 const std::string & theNameGroup);
48
50 FEATURESAPI_EXPORT
52
58
59
60 FEATURESAPI_EXPORT
61 virtual void dump(ModelHighAPI_Dumper& theDumper) const;
62};
63
65typedef std::shared_ptr<FeaturesAPI_SharedFaces> SharedFacesPtr;
66
72FEATURESAPI_EXPORT
73SharedFacesPtr getSharedFaces(const std::shared_ptr<ModelAPI_Document>& thePart,
74 const ModelHighAPI_Selection& theObject,
75 const std::string & theNameGroup);
76
77#endif // FeaturesAPI_SharedFaces_H_
Interface to find shared faces.
Definition: FeaturesAPI_SharedFaces.h:38
virtual std::shared_ptr< ModelAPI_AttributeSelection > objectselected() const
object selected
Definition: FeaturesAPI_SharedFaces.h:57
virtual void dump(ModelHighAPI_Dumper &theDumper) const
Dump wrapped feature.
Definition: FeaturesAPI_SharedFaces.cpp:57
virtual std::shared_ptr< ModelAPI_AttributeString > groupname() const
group name
Definition: FeaturesAPI_SharedFaces.h:57
virtual ~FeaturesAPI_SharedFaces()
Destructor.
Definition: FeaturesAPI_SharedFaces.cpp:52
FeaturesAPI_SharedFaces(const std::shared_ptr< ModelAPI_Feature > &theFeature)
Constructor without values.
Definition: FeaturesAPI_SharedFaces.cpp:30
static const std::string & ID()
Group shared faces kind.
Definition: FeaturesPlugin_GroupSharedFaces.h:33
static const std::string & OBJECT_ID()
Attribute name for object selected.
Definition: FeaturesPlugin_GroupSharedFaces.h:40
static const std::string & GROUP_NAME_ID()
Attribute name for group name.
Definition: FeaturesPlugin_GroupSharedFaces.h:68
Attribute that contains reference to the sub-shape of some result, the selected shape.
Definition: ModelAPI_AttributeSelection.h:35
API for the attribute that contains std (null terminated) string.
Definition: ModelAPI_AttributeString.h:33
Document for internal data structure of any object storage.
Definition: ModelAPI_Document.h:53
Dump engine for the model.
Definition: ModelHighAPI_Dumper.h:81
Base class for feature interfaces.
Definition: ModelHighAPI_Interface.h:46
Class for filling ModelAPI_AttributeSelection.
Definition: ModelHighAPI_Selection.h:49
SharedFacesPtr getSharedFaces(const std::shared_ptr< ModelAPI_Document > &thePart, const ModelHighAPI_Selection &theObject, const std::string &theNameGroup)
Create a group of shared faces in a compsolid or a compound.
Definition: FeaturesAPI_SharedFaces.cpp:71