diff options
Diffstat (limited to 'src/stringprocbuild.h')
-rw-r--r-- | src/stringprocbuild.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/stringprocbuild.h b/src/stringprocbuild.h new file mode 100644 index 0000000..13dd4f6 --- /dev/null +++ b/src/stringprocbuild.h | |||
@@ -0,0 +1,20 @@ | |||
1 | #ifndef STRING_PROC_BUILD_H | ||
2 | #define STRING_PROC_BUILD_H | ||
3 | |||
4 | #include <stdint.h> | ||
5 | |||
6 | #include "stringproc.h" | ||
7 | |||
8 | class StringProcBuild : public StringProc | ||
9 | { | ||
10 | public: | ||
11 | StringProcBuild( Build *pBld ); | ||
12 | virtual ~StringProcBuild(); | ||
13 | |||
14 | virtual std::string replVars( const std::string &sSrc, const std::string &sCont ); | ||
15 | |||
16 | private: | ||
17 | |||
18 | }; | ||
19 | |||
20 | #endif | ||