blob: 6bedff8c5f65bb820e8c5cb69a2a83d6d5b87c5b (
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
|
// File: Dynamic_InterpretedMethod.cxx
// Created: Thu Jan 28 15:07:26 1993
// Author: Gilles DEBARBOUILLE
// <gde@bravox>
#include <Dynamic_InterpretedMethod.ixx>
#include <TCollection_AsciiString.hxx>
//=======================================================================
//function : Dynamic_InterpretedMethod
//purpose :
//=======================================================================
Dynamic_InterpretedMethod::Dynamic_InterpretedMethod(const Standard_CString aname,
const Standard_CString afile)
: Dynamic_MethodDefinition(aname)
{
thefunction = new TCollection_HAsciiString(afile);
}
//=======================================================================
//function : Function
//purpose :
//=======================================================================
void Dynamic_InterpretedMethod::Function(const Standard_CString afile)
{
thefunction = new TCollection_HAsciiString(afile);
}
//=======================================================================
//function : Function
//purpose :
//=======================================================================
TCollection_AsciiString Dynamic_InterpretedMethod::Function() const
{
return thefunction->String();
}
|