summaryrefslogtreecommitdiff
path: root/src/StepRepr/StepRepr_RepresentationItem.cxx
blob: e9ca4eb5b22dcf5179283d02c15438664ca149d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <StepRepr_RepresentationItem.ixx>


StepRepr_RepresentationItem::StepRepr_RepresentationItem ()  {}

void StepRepr_RepresentationItem::Init(
	const Handle(TCollection_HAsciiString)& aName)
{
	// --- classe own fields ---
	name = aName;
}


void StepRepr_RepresentationItem::SetName(const Handle(TCollection_HAsciiString)& aName)
{
	name = aName;
}

Handle(TCollection_HAsciiString) StepRepr_RepresentationItem::Name() const
{
	return name;
}