# | Line 22 | Line 22 | class Matcher | |
---|---|---|
22 | { | |
23 | private: | |
24 | ::pcre* expression; | |
25 | – | int options; |
25 | std::vector<std::string> substrings; | |
26 | public: | |
27 | + | int options; |
28 | static int defaults; | |
29 | Matcher(int options = defaults) : expression(NULL), options(options) {} | |
30 | Matcher(const std::string& expression, int options = defaults) : expression(NULL), options(options) { (*this)(expression); } |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |