# | Line 17 | Line 17 | private: | |
---|---|---|
17 | pcre* expression; | |
18 | vector<string> substrings; | |
19 | public: | |
20 | < | Matcher() { expression = NULL; } |
20 | > | Matcher() : expression(NULL) {} |
21 | Matcher(const string& expression); | |
22 | ~Matcher(); | |
23 | bool match(const string& stuff); |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |