- Renamed RegX to RX.  Got sick of the RegX name - looked too much like GenX.
This commit is contained in:
Paul Beckingham
2011-06-21 18:15:58 -04:00
parent 03dbf7f468
commit a7d6b91ad3
9 changed files with 52 additions and 52 deletions

View File

@@ -32,7 +32,7 @@
#include <stack>
#include <Arguments.h>
#include <Task.h>
#include <RegX.h>
#include <RX.h>
#include <Variant.h>
class Expression
@@ -61,7 +61,7 @@ private:
private:
Arguments _args;
std::map <std::string, RegX> _regexes;
std::map <std::string, RX> _regexes;
};
#endif