aboutsummaryrefslogtreecommitdiff
path: root/src/stringprocbuild.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2006-08-29 22:50:44 +0000
committerMike Buland <eichlan@xagasoft.com>2006-08-29 22:50:44 +0000
commit375112224567de0b2f3666cef13b1c5832f1ed6f (patch)
tree5b13d65d7aa50b304c884a8a5d796db844f9ddac /src/stringprocbuild.h
parentc41af88a8a3dcd3e9e0ea6dcbe7df9e71eb4eedd (diff)
downloadbuild-375112224567de0b2f3666cef13b1c5832f1ed6f.tar.gz
build-375112224567de0b2f3666cef13b1c5832f1ed6f.tar.bz2
build-375112224567de0b2f3666cef13b1c5832f1ed6f.tar.xz
build-375112224567de0b2f3666cef13b1c5832f1ed6f.zip
Updated a load, now there's a seperate module for performing string processing
pre parser, and whatever.
Diffstat (limited to '')
-rw-r--r--src/stringprocbuild.h20
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
8class StringProcBuild : public StringProc
9{
10public:
11 StringProcBuild( Build *pBld );
12 virtual ~StringProcBuild();
13
14 virtual std::string replVars( const std::string &sSrc, const std::string &sCont );
15
16private:
17
18};
19
20#endif