blob: 8bcb6fae215f474fe7fb395b85659d6a5ed592d7 (
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
48
49
50
51
|
// File: StepBasic_ExternalIdentificationAssignment.cxx
// Created: Wed May 10 15:09:06 2000
// Author: Andrey BETENEV
// Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.1
// Copyright: Matra Datavision 2000
#include <StepBasic_ExternalIdentificationAssignment.ixx>
//=======================================================================
//function : StepBasic_ExternalIdentificationAssignment
//purpose :
//=======================================================================
StepBasic_ExternalIdentificationAssignment::StepBasic_ExternalIdentificationAssignment ()
{
}
//=======================================================================
//function : Init
//purpose :
//=======================================================================
void StepBasic_ExternalIdentificationAssignment::Init (const Handle(TCollection_HAsciiString) &aIdentificationAssignment_AssignedId,
const Handle(StepBasic_IdentificationRole) &aIdentificationAssignment_Role,
const Handle(StepBasic_ExternalSource) &aSource)
{
StepBasic_IdentificationAssignment::Init(aIdentificationAssignment_AssignedId,
aIdentificationAssignment_Role);
theSource = aSource;
}
//=======================================================================
//function : Source
//purpose :
//=======================================================================
Handle(StepBasic_ExternalSource) StepBasic_ExternalIdentificationAssignment::Source () const
{
return theSource;
}
//=======================================================================
//function : SetSource
//purpose :
//=======================================================================
void StepBasic_ExternalIdentificationAssignment::SetSource (const Handle(StepBasic_ExternalSource) &aSource)
{
theSource = aSource;
}
|