blob: 0c0f28bd1f18882c3862726a533a17a4c7878afc (
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: StepRepr_MaterialPropertyRepresentation.cxx
// Created: Thu Dec 12 16:07:47 2002
// Author: data exchange team
// Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.2
// Copyright: Open CASCADE 2002
#include <StepRepr_MaterialPropertyRepresentation.ixx>
//=======================================================================
//function : StepRepr_MaterialPropertyRepresentation
//purpose :
//=======================================================================
StepRepr_MaterialPropertyRepresentation::StepRepr_MaterialPropertyRepresentation ()
{
}
//=======================================================================
//function : Init
//purpose :
//=======================================================================
void StepRepr_MaterialPropertyRepresentation::Init (const StepRepr_RepresentedDefinition &aPropertyDefinitionRepresentation_Definition,
const Handle(StepRepr_Representation) &aPropertyDefinitionRepresentation_UsedRepresentation,
const Handle(StepRepr_DataEnvironment) &aDependentEnvironment)
{
StepRepr_PropertyDefinitionRepresentation::Init(aPropertyDefinitionRepresentation_Definition,
aPropertyDefinitionRepresentation_UsedRepresentation);
theDependentEnvironment = aDependentEnvironment;
}
//=======================================================================
//function : DependentEnvironment
//purpose :
//=======================================================================
Handle(StepRepr_DataEnvironment) StepRepr_MaterialPropertyRepresentation::DependentEnvironment () const
{
return theDependentEnvironment;
}
//=======================================================================
//function : SetDependentEnvironment
//purpose :
//=======================================================================
void StepRepr_MaterialPropertyRepresentation::SetDependentEnvironment (const Handle(StepRepr_DataEnvironment) &aDependentEnvironment)
{
theDependentEnvironment = aDependentEnvironment;
}
|