summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorpixel <pixel>2004-12-18 13:16:57 +0000
committerpixel <pixel>2004-12-18 13:16:57 +0000
commit6b5d244193f23f0c5ba405339d5363b0f9ce0f45 (patch)
treeaf2e9cb5becaa5fc07d8acb9382159c58ef1342d /include
parent54513cfb499a2f40859dd7d46e4be4a24bedf215 (diff)
Renaming conflicting "case unsensitive" filename.
Diffstat (limited to 'include')
-rw-r--r--include/Regex.h22
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