blob: 523f9f0d32f4bbce6ca44a65feba28a0cb916a61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
/* +------------------------------------+
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
* InspIRCd: (C) 2002-2010 InspIRCd Development Team
* See: http://wiki.inspircd.org/Credits
*
* This program is free but copyrighted software; see
* the file COPYING for details.
*
* ---------------------------------------------------
*/
#ifndef _M_REGEX_H
#define _M_REGEX_H
#include "inspircd.h"
class Regex : public classbase
{
protected:
std::string regex_string; // The raw uncompiled regex string.
// Constructor may as well be protected, as this class is abstract.
Regex(const std::string& rx) : regex_string(rx)
{
}
public:
virtual ~Regex()
{
}
virtual bool Matches(const std::string& text) = 0;
const std::string& GetRegexString() const
{
return regex_string;
}
};
class RegexFactory : public DataProvider
{
public:
RegexFactory(Module* Creator, const std::string& Name) : DataProvider(Creator, Name) {}
virtual Regex* Create(const std::string& expr) = 0;
};
#endif
|