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/stringproc.h | |
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/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 | ||