diff options
author | pixel <pixel> | 2004-12-18 13:16:57 +0000 |
---|---|---|
committer | pixel <pixel> | 2004-12-18 13:16:57 +0000 |
commit | 6b5d244193f23f0c5ba405339d5363b0f9ce0f45 (patch) | |
tree | af2e9cb5becaa5fc07d8acb9382159c58ef1342d /include | |
parent | 54513cfb499a2f40859dd7d46e4be4a24bedf215 (diff) |
Renaming conflicting "case unsensitive" filename.
Diffstat (limited to 'include')
-rw-r--r-- | include/Regex.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/include/Regex.h b/include/Regex.h deleted file mode 100644 index b076342..0000000 --- a/include/Regex.h +++ /dev/null @@ -1,22 +0,0 @@ -#ifndef __REGEX_H__ -#define __REGEX_H__ - -#include <Exceptions.h> -#include <BString.h> -#include <regex.h> - -class Regex : public Base { - public: - Regex(const String &, int = REG_EXTENDED, int = 0) throw (GeneralException); - Regex(const Regex &); - ~Regex(); - bool Match(const String &) const; - private: - regex_t preg; - int cflags, eflags; - char * pattern; -}; - -extern Regex empty, any; - -#endif |