diff options
Diffstat (limited to 'src/function.cpp')
-rw-r--r-- | src/function.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/function.cpp b/src/function.cpp index 5eeac97..e7554e1 100644 --- a/src/function.cpp +++ b/src/function.cpp | |||
@@ -7,3 +7,9 @@ Function::Function() | |||
7 | Function::~Function() | 7 | Function::~Function() |
8 | { | 8 | { |
9 | } | 9 | } |
10 | |||
11 | void Function::addParam( const char *str ) | ||
12 | { | ||
13 | lParams.push_back( str ); | ||
14 | } | ||
15 | |||