aboutsummaryrefslogtreecommitdiff
path: root/src/function.cpp
blob: c4bf966c18b2582bf078ef49042558ee50a15101 (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;
}