blob: 62290d2672eeb09f610ac70803265caf07219891 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#include <StepShape_ManifoldSolidBrep.ixx>
StepShape_ManifoldSolidBrep::StepShape_ManifoldSolidBrep () {}
void StepShape_ManifoldSolidBrep::Init(
const Handle(TCollection_HAsciiString)& aName)
{
StepRepr_RepresentationItem::Init(aName);
}
void StepShape_ManifoldSolidBrep::Init(
const Handle(TCollection_HAsciiString)& aName,
const Handle(StepShape_ClosedShell)& aOuter)
{
// --- classe own fields ---
outer = aOuter;
// --- classe inherited fields ---
StepRepr_RepresentationItem::Init(aName);
}
void StepShape_ManifoldSolidBrep::SetOuter(const Handle(StepShape_ClosedShell)& aOuter)
{
outer = aOuter;
}
Handle(StepShape_ClosedShell) StepShape_ManifoldSolidBrep::Outer() const
{
return outer;
}
|