summaryrefslogtreecommitdiff
path: root/utils/RegExp.h
diff options
context:
space:
mode:
authorsc2000-11-28 14:19:35 +0000
committersc2000-11-28 14:19:35 +0000
commit325530e630c68c7c10a2f4339f5b43434fcd0329 (patch)
tree8e655f6002598176ed0e9e5e0ba3bcb0971c434d /utils/RegExp.h
parentb8af7905fd61ce5cb2c94da78ccc9e051f9ceddc (diff)
downloadivy-league-325530e630c68c7c10a2f4339f5b43434fcd0329.zip
ivy-league-325530e630c68c7c10a2f4339f5b43434fcd0329.tar.gz
ivy-league-325530e630c68c7c10a2f4339f5b43434fcd0329.tar.bz2
ivy-league-325530e630c68c7c10a2f4339f5b43434fcd0329.tar.xz
Incorporation into IvyLeague
Ccu -> Ivl ccu -> ivl Smart pointers disappear (too dangerous) Imakefile disappears (Makefile now) An empty cplus_bugs.h has been created locally
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; }