diff options
author | Mike Buland <eichlan@xagasoft.com> | 2011-04-13 23:25:17 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2011-04-13 23:25:17 +0000 |
commit | f254b23578a9a53a56e6cea980ba588e5f830314 (patch) | |
tree | 70def8958fa0f21c80aa5ef29cde7d6eba245213 /src/regexengine.cpp | |
parent | bc6d543210a9df6f578229c6050371ced665fd69 (diff) | |
download | libbu++-f254b23578a9a53a56e6cea980ba588e5f830314.tar.gz libbu++-f254b23578a9a53a56e6cea980ba588e5f830314.tar.bz2 libbu++-f254b23578a9a53a56e6cea980ba588e5f830314.tar.xz libbu++-f254b23578a9a53a56e6cea980ba588e5f830314.zip |
Regular expression engine is started, it's...tricky, but I think I can get it.
Diffstat (limited to 'src/regexengine.cpp')
-rw-r--r-- | src/regexengine.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/regexengine.cpp b/src/regexengine.cpp new file mode 100644 index 0000000..72bc381 --- /dev/null +++ b/src/regexengine.cpp | |||
@@ -0,0 +1,5 @@ | |||
1 | #include "bu/regexengine.h" | ||
2 | #include "bu/utfstring.h" | ||
3 | |||
4 | template class Bu::RegExEngine<char>; | ||
5 | template class Bu::RegExEngine<Bu::UtfChar>; | ||