aboutsummaryrefslogtreecommitdiff
path: root/src/function.cpp
blob: e7554e1a8259e13a678f7be1c5c221ea2d3ed31e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "function.h"

Function::Function()
{
}

Function::~Function()
{
}

void Function::addParam( const char *str )
{
	lParams.push_back( str );
}