blob: 31da8a8cf90b2433b0293da0983b3c347402cf3a (
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_ExternalSource.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_ExternalSource.ixx>
//=======================================================================
//function : StepBasic_ExternalSource
//purpose :
//=======================================================================
StepBasic_ExternalSource::StepBasic_ExternalSource ()
{
}
//=======================================================================
//function : Init
//purpose :
//=======================================================================
void StepBasic_ExternalSource::Init (const StepBasic_SourceItem &aSourceId)
{
theSourceId = aSourceId;
}
//=======================================================================
//function : SourceId
//purpose :
//=======================================================================
StepBasic_SourceItem StepBasic_ExternalSource::SourceId () const
{
return theSourceId;
}
//=======================================================================
//function : SetSourceId
//purpose :
//=======================================================================
void StepBasic_ExternalSource::SetSourceId (const StepBasic_SourceItem &aSourceId)
{
theSourceId = aSourceId;
}
|