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


StepBasic_DateRole::StepBasic_DateRole ()  {}

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


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

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