blob: f73f576c3f50aa707f29f8506854e7b091ed1c40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "function.h"
Function::Function() :
pContext( NULL )
{
}
Function::~Function()
{
}
void Function::setContext( class Context *p )
{
pContext = p;
}
|