From 51e21a316be6e052251b3dfc7d671061ebd67cee Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Mon, 21 Dec 2009 18:03:28 +0000 Subject: Removed the old trunk contents. About to load up m3 --- src/function.cpp | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 src/function.cpp (limited to 'src/function.cpp') diff --git a/src/function.cpp b/src/function.cpp deleted file mode 100644 index 6e4f1d7..0000000 --- a/src/function.cpp +++ /dev/null @@ -1,25 +0,0 @@ -#include "function.h" - -Function::Function() -{ -} - -Function::~Function() -{ -} - -void Function::addParam( const char *str ) -{ - lParams.push_back( str ); -} - -void Function::copyData( Function *pSrc, Build &bld, const StringList *cont, VarMap *mExtra ) -{ - lParams.clear(); - for( std::list::iterator i = pSrc->lParams.begin(); - i != pSrc->lParams.end(); i++ ) - { - lParams.push_back( bld.replVars( *i, cont, mExtra ) ); - } -} - -- cgit v1.2.3