diff options
Diffstat (limited to '')
-rw-r--r-- | src/stringproc.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/stringproc.h b/src/stringproc.h index 860579f..d408601 100644 --- a/src/stringproc.h +++ b/src/stringproc.h | |||
@@ -4,10 +4,12 @@ | |||
4 | #include <stdint.h> | 4 | #include <stdint.h> |
5 | #include <string> | 5 | #include <string> |
6 | #include <map> | 6 | #include <map> |
7 | #include <list> | ||
7 | 8 | ||
8 | class Build; | 9 | class Build; |
9 | 10 | ||
10 | typedef std::map<std::string,std::string> VarMap; | 11 | typedef std::map<std::string,std::string> VarMap; |
12 | typedef std::list<std::string> StringList; | ||
11 | 13 | ||
12 | class StringProc | 14 | class StringProc |
13 | { | 15 | { |
@@ -15,7 +17,7 @@ public: | |||
15 | StringProc( Build *pBld ); | 17 | StringProc( Build *pBld ); |
16 | virtual ~StringProc(); | 18 | virtual ~StringProc(); |
17 | 19 | ||
18 | virtual std::string replVars( const std::string &sSrc, const std::string &sCont, VarMap *mExtra )=0; | 20 | virtual std::string replVars( const std::string &sSrc, const StringList *pCont, VarMap *mExtra )=0; |
19 | 21 | ||
20 | protected: | 22 | protected: |
21 | Build *getBuild() | 23 | Build *getBuild() |