blob: 839f4931d304e58a222fc4a127db3dd70dee7fb0 (
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
|
// File: Dynamic_CompositVariableInstance.cxx
// Created: Mon Sep 5 15:06:46 1994
// Author: Gilles DEBARBOUILLE
// <gde@watson>
#include <Dynamic_CompositVariableInstance.ixx>
//=======================================================================
//function : Dynamic_CompositVariableInstance
//purpose :
//=======================================================================
Dynamic_CompositVariableInstance::Dynamic_CompositVariableInstance()
{}
//=======================================================================
//function : Variable
//purpose :
//=======================================================================
void Dynamic_CompositVariableInstance::Variable(const Handle(Dynamic_Variable)& avariable)
{
Handle(Dynamic_VariableNode) variablenode = new Dynamic_VariableNode(avariable);
variablenode->Next(thefirstvariablenode);
thefirstvariablenode = variablenode;
}
//=======================================================================
//function : FirstVariable
//purpose :
//=======================================================================
Handle(Dynamic_VariableNode) Dynamic_CompositVariableInstance::FirstVariableNode() const
{
return thefirstvariablenode;
}
|