summaryrefslogtreecommitdiff
path: root/utils/RegExp.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/RegExp.h')
-rw-r--r--utils/RegExp.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/utils/RegExp.h b/utils/RegExp.h
index ac1321d..189d5ad 100644
--- a/utils/RegExp.h
+++ b/utils/RegExp.h
@@ -31,13 +31,13 @@
/* POSIX version of regular expressions */
-class CcuRegExp {
+class IvlRegExp {
private:
const char* String;
void* Compiled;
public:
-inline CcuRegExp (const char* s) : String (s), Compiled (0) {}
- ~CcuRegExp ();
+inline IvlRegExp (const char* s) : String (s), Compiled (0) {}
+ ~IvlRegExp ();
bool Compile ();
bool Match (const char*);
inline const char* GetExpr () {return String;}
@@ -47,14 +47,14 @@ inline const char* GetExpr () {return String;}
#ifdef RE_COMP
-class CcuRegExp {
+class IvlRegExp {
private:
const char* String;
-static CcuRegExp* Compiled;
+static IvlRegExp* Compiled;
public:
-inline CcuRegExp (const char* s) : String (s) {}
-inline ~CcuRegExp () {};
+inline IvlRegExp (const char* s) : String (s) {}
+inline ~IvlRegExp () {};
bool Compile ();
bool Match (const char*);
inline const char* GetExpr () {return String;}
@@ -64,14 +64,14 @@ inline const char* GetExpr () {return String;}
#if !defined(REGCOMP) && !defined(RE_COMP)
-class CcuRegExp {
+class IvlRegExp {
private:
const char* String;
char* Compiled;
public:
-inline CcuRegExp (const char* s) : String (s), Compiled (0) {}
- ~CcuRegExp ();
+inline IvlRegExp (const char* s) : String (s), Compiled (0) {}
+ ~IvlRegExp ();
bool Compile ();
bool Match (const char*);
inline const char* GetExpr () { return String; }