From 23d91060b557f77fc37e629a168ca810cd66a364 Mon Sep 17 00:00:00 2001 From: Pixel Date: Thu, 29 Nov 2001 17:42:23 +0000 Subject: Fixing regex --- include/Regex.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'include') diff --git a/include/Regex.h b/include/Regex.h index 1fc7197..9c8d466 100644 --- a/include/Regex.h +++ b/include/Regex.h @@ -4,17 +4,18 @@ #include #include - #include class Regex : public Base { public: - Regex(const String &, int = REG_EXTENDED | REG_ICASE, int = 0) throw (GeneralException); + Regex(const String &, int = REG_EXTENDED, int = 0) throw (GeneralException); + Regex(const Regex &); ~Regex(); bool Match(const String &) const; private: regex_t preg; - int eflags; + int cflags, eflags; + char * pattern; }; extern Regex empty, any; -- cgit v1.2.3