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