diff options
author | Mike Buland <eichlan@xagasoft.com> | 2006-08-29 22:50:44 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2006-08-29 22:50:44 +0000 |
commit | 375112224567de0b2f3666cef13b1c5832f1ed6f (patch) | |
tree | 5b13d65d7aa50b304c884a8a5d796db844f9ddac /src/stringproc.cpp | |
parent | c41af88a8a3dcd3e9e0ea6dcbe7df9e71eb4eedd (diff) | |
download | build-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 'src/stringproc.cpp')
-rw-r--r-- | src/stringproc.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/stringproc.cpp b/src/stringproc.cpp new file mode 100644 index 0000000..23abca9 --- /dev/null +++ b/src/stringproc.cpp | |||
@@ -0,0 +1,12 @@ | |||
1 | #include "stringproc.h" | ||
2 | |||
3 | StringProc::StringProc( Build *pBld ) : | ||
4 | pBld( pBld ) | ||
5 | { | ||
6 | } | ||
7 | |||
8 | StringProc::~StringProc() | ||
9 | { | ||
10 | } | ||
11 | |||
12 | |||