diff options
author | Mike Buland <eichlan@xagasoft.com> | 2009-12-21 18:03:28 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2009-12-21 18:03:28 +0000 |
commit | 51e21a316be6e052251b3dfc7d671061ebd67cee (patch) | |
tree | 4b825dc642cb6eb9a060e54bf8d69288fbee4904 /src/perform.cpp | |
parent | ad6f4dfcc671d3f8d458c42b0992956f2a2cf979 (diff) | |
download | build-51e21a316be6e052251b3dfc7d671061ebd67cee.tar.gz build-51e21a316be6e052251b3dfc7d671061ebd67cee.tar.bz2 build-51e21a316be6e052251b3dfc7d671061ebd67cee.tar.xz build-51e21a316be6e052251b3dfc7d671061ebd67cee.zip |
Removed the old trunk contents. About to load up m3
Diffstat (limited to 'src/perform.cpp')
-rw-r--r-- | src/perform.cpp | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/src/perform.cpp b/src/perform.cpp deleted file mode 100644 index 25d54c7..0000000 --- a/src/perform.cpp +++ /dev/null | |||
@@ -1,26 +0,0 @@ | |||
1 | #include "perform.h" | ||
2 | #include "build.h" | ||
3 | |||
4 | Perform::Perform() | ||
5 | { | ||
6 | } | ||
7 | |||
8 | Perform::~Perform() | ||
9 | { | ||
10 | } | ||
11 | |||
12 | void Perform::addParam( const char *sParam ) | ||
13 | { | ||
14 | lParam.push_back( sParam ); | ||
15 | } | ||
16 | |||
17 | void Perform::copyData( Perform *pSrc, Build &bld, const StringList *cont, VarMap *mExtra ) | ||
18 | { | ||
19 | lParam.clear(); | ||
20 | for( std::list<std::string>::iterator i = pSrc->lParam.begin(); | ||
21 | i != pSrc->lParam.end(); i++ ) | ||
22 | { | ||
23 | lParam.push_back( bld.replVars( *i, cont, mExtra ) ); | ||
24 | } | ||
25 | } | ||
26 | |||