# | Line 6 | Line 6 | |
---|---|---|
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 | ||
# | Line 21 | Line 21 | Matcher::~Matcher() | |
21 | } | |
22 | } | |
23 | ||
24 | < | bool Matcher::match(const std::string& stuff) |
24 | > | bool Matcher::match(const ext::String& stuff) |
25 | { | |
26 | substrings.clear(); | |
27 | ||
# | Line 58 | Line 58 | bool Matcher::match(const std::string& s | |
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 |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |