summaryrefslogtreecommitdiff
path: root/src/StepBasic/StepBasic_NameAssignment.cxx
blob: 929b8974d9e6a88a87f8c2e96250611f9bdc34fd (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// File:	StepBasic_NameAssignment.cxx
// Created:	Wed May 10 15:09:08 2000 
// Author:	Andrey BETENEV
// Generator:	ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.1
// Copyright:	Matra Datavision 2000

#include <StepBasic_NameAssignment.ixx>

//=======================================================================
//function : StepBasic_NameAssignment
//purpose  : 
//=======================================================================

StepBasic_NameAssignment::StepBasic_NameAssignment ()
{
}

//=======================================================================
//function : Init
//purpose  : 
//=======================================================================

void StepBasic_NameAssignment::Init (const Handle(TCollection_HAsciiString) &aAssignedName)
{

  theAssignedName = aAssignedName;
}

//=======================================================================
//function : AssignedName
//purpose  : 
//=======================================================================

Handle(TCollection_HAsciiString) StepBasic_NameAssignment::AssignedName () const
{
  return theAssignedName;
}

//=======================================================================
//function : SetAssignedName
//purpose  : 
//=======================================================================

void StepBasic_NameAssignment::SetAssignedName (const Handle(TCollection_HAsciiString) &aAssignedName)
{
  theAssignedName = aAssignedName;
}