1 |
< |
// Smersh |
1 |
> |
// Zoe AIM Away Message RSS Feed Generator |
2 |
|
// |
3 |
|
// Douglas Thrift |
4 |
|
// |
6 |
|
|
7 |
|
#include "Matcher.hpp" |
8 |
|
|
9 |
< |
Matcher::Matcher(const std::string& expression) |
9 |
> |
Matcher::Matcher(const ext::String& expression) |
10 |
|
{ |
11 |
|
this->expression = NULL; |
12 |
|
|
21 |
|
} |
22 |
|
} |
23 |
|
|
24 |
< |
bool Matcher::match(const std::string& stuff) |
24 |
> |
bool Matcher::match(const ext::String& stuff) |
25 |
|
{ |
26 |
|
substrings.clear(); |
27 |
|
|
58 |
|
return false; |
59 |
|
} |
60 |
|
|
61 |
< |
Matcher& Matcher::operator()(const std::string& expression) |
61 |
> |
Matcher& Matcher::operator()(const ext::String& expression) |
62 |
|
{ |
63 |
|
substrings.clear(); |
64 |
|
|