| 2351 | bool match(std::string const &source) const override; |
| 2352 | }; |
| 2353 | struct EndsWithMatcher : StringMatcherBase { |
| 2354 | EndsWithMatcher(CasedString const &comparator); |
| 2355 | bool match(std::string const &source) const override; |
| 2356 | }; |
| 2357 | |
| 2358 | struct RegexMatcher : MatcherBase<std::string> { |
| 2359 | RegexMatcher(std::string regex, CaseSensitive::Choice caseSensitivity); |