diff options
Diffstat (limited to '')
-rw-r--r-- | src/function.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/function.cpp b/src/function.cpp new file mode 100644 index 0000000..f73f576 --- /dev/null +++ b/src/function.cpp | |||
@@ -0,0 +1,16 @@ | |||
1 | #include "function.h" | ||
2 | |||
3 | Function::Function() : | ||
4 | pContext( NULL ) | ||
5 | { | ||
6 | } | ||
7 | |||
8 | Function::~Function() | ||
9 | { | ||
10 | } | ||
11 | |||
12 | void Function::setContext( class Context *p ) | ||
13 | { | ||
14 | pContext = p; | ||
15 | } | ||
16 | |||