From 325530e630c68c7c10a2f4339f5b43434fcd0329 Mon Sep 17 00:00:00 2001 From: sc Date: Tue, 28 Nov 2000 14:19:35 +0000 Subject: 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 --- utils/RegExp.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'utils/RegExp.h') 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; } -- cgit v1.1