summaryrefslogtreecommitdiff
path: root/src/Dynamic/Dynamic_VariableInstance.cxx
blob: 8d5ed0e3859673f049391cb59593dbacdf108308 (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
// File:	Dynamic_VariableInstance.cxx
// Created:	Mon Sep  5 15:06:46 1994
// Author:	Gilles DEBARBOUILLE
//		<gde@watson>


#include <Dynamic_VariableInstance.ixx>

//=======================================================================
//function : Dynamic_VariableInstance
//purpose  : 
//=======================================================================

Dynamic_VariableInstance::Dynamic_VariableInstance() : Dynamic_AbstractVariableInstance()
{}

//=======================================================================
//function : Variable
//purpose  : 
//=======================================================================

void Dynamic_VariableInstance::Variable(const Handle(Dynamic_Variable)& avariable)
{
  thevariable = avariable;
}

//=======================================================================
//function : Variable
//purpose  : 
//=======================================================================

Handle(Dynamic_Variable) Dynamic_VariableInstance::Variable() const
{
  return thevariable;
}