diff options
Diffstat (limited to 'src/stringproc.h')
-rw-r--r-- | src/stringproc.h | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/src/stringproc.h b/src/stringproc.h deleted file mode 100644 index d408601..0000000 --- a/src/stringproc.h +++ /dev/null | |||
@@ -1,33 +0,0 @@ | |||
1 | #ifndef STRING_PROC_H | ||
2 | #define STRING_PROC_H | ||
3 | |||
4 | #include <stdint.h> | ||
5 | #include <string> | ||
6 | #include <map> | ||
7 | #include <list> | ||
8 | |||
9 | class Build; | ||
10 | |||
11 | typedef std::map<std::string,std::string> VarMap; | ||
12 | typedef std::list<std::string> StringList; | ||
13 | |||
14 | class StringProc | ||
15 | { | ||
16 | public: | ||
17 | StringProc( Build *pBld ); | ||
18 | virtual ~StringProc(); | ||
19 | |||
20 | virtual std::string replVars( const std::string &sSrc, const StringList *pCont, VarMap *mExtra )=0; | ||
21 | |||
22 | protected: | ||
23 | Build *getBuild() | ||
24 | { | ||
25 | return pBld; | ||
26 | } | ||
27 | |||
28 | private: | ||
29 | Build *pBld; | ||
30 | |||
31 | }; | ||
32 | |||
33 | #endif | ||