SHAPER 9.16.0
PartSetAPI_Part.h
1// Copyright (C) 2014-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 SRC_PARTSETAPI_PARTSETAPI_PART_H_
21#define SRC_PARTSETAPI_PARTSETAPI_PART_H_
22
23//--------------------------------------------------------------------------------------
24#include "PartSetAPI.h"
25
26#include <PartSetPlugin_Part.h>
27
28#include <ModelHighAPI_Interface.h>
29#include <ModelHighAPI_Macro.h>
30//--------------------------------------------------------------------------------------
32//--------------------------------------------------------------------------------------
38{
39public:
41 PARTSETAPI_EXPORT
42 explicit PartSetAPI_Part(const std::shared_ptr<ModelAPI_Feature> & theFeature);
44 PARTSETAPI_EXPORT
45 virtual ~PartSetAPI_Part();
46
47 INTERFACE_0(PartSetPlugin_Part::ID())
48
49
50 PARTSETAPI_EXPORT
51 std::shared_ptr<ModelAPI_Document> document() const;
52
54 PARTSETAPI_EXPORT
55 virtual void dump(ModelHighAPI_Dumper& theDumper) const;
56};
57
59typedef std::shared_ptr<PartSetAPI_Part> PartPtr;
60
64PARTSETAPI_EXPORT
65PartPtr addPart(const std::shared_ptr<ModelAPI_Document> & thePartSet);
66
70PARTSETAPI_EXPORT
71PartPtr duplicatePart(const ModelHighAPI_Interface& thePart);
72
76PARTSETAPI_EXPORT
77void removePart(const ModelHighAPI_Interface& thePart);
78
79//--------------------------------------------------------------------------------------
80//--------------------------------------------------------------------------------------
81#endif /* SRC_PARTSETAPI_PARTSETAPI_PART_H_ */
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
Interface for Part feature.
Definition: PartSetAPI_Part.h:38
virtual void dump(ModelHighAPI_Dumper &theDumper) const
Dump wrapped feature.
Definition: PartSetAPI_Part.cpp:47
PartSetAPI_Part(const std::shared_ptr< ModelAPI_Feature > &theFeature)
Constructor without values.
Definition: PartSetAPI_Part.cpp:30
virtual ~PartSetAPI_Part()
Destructor.
Definition: PartSetAPI_Part.cpp:37
std::shared_ptr< ModelAPI_Document > document() const
Return document.
Definition: PartSetAPI_Part.cpp:42
static const std::string & ID()
Part kind.
Definition: PartSetPlugin_Part.h:35
void removePart(const ModelHighAPI_Interface &thePart)
Remove Part feature.
Definition: PartSetAPI_Part.cpp:90
PartPtr addPart(const std::shared_ptr< ModelAPI_Document > &thePartSet)
Create Part feature.
Definition: PartSetAPI_Part.cpp:56
PartPtr duplicatePart(const ModelHighAPI_Interface &thePart)
Duplicate Part feature.
Definition: PartSetAPI_Part.cpp:63