aboutsummaryrefslogtreecommitdiff
path: root/src/regexengine.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2011-04-13 23:25:17 +0000
committerMike Buland <eichlan@xagasoft.com>2011-04-13 23:25:17 +0000
commitf254b23578a9a53a56e6cea980ba588e5f830314 (patch)
tree70def8958fa0f21c80aa5ef29cde7d6eba245213 /src/regexengine.cpp
parentbc6d543210a9df6f578229c6050371ced665fd69 (diff)
downloadlibbu++-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 '')
-rw-r--r--src/regexengine.cpp5
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
4template class Bu::RegExEngine<char>;
5template class Bu::RegExEngine<Bu::UtfChar>;