| 3566 | bool match( std::string const& source ) const override; |
| 3567 | }; |
| 3568 | struct EndsWithMatcher : StringMatcherBase { |
| 3569 | EndsWithMatcher( CasedString const& comparator ); |
| 3570 | bool match( std::string const& source ) const override; |
| 3571 | }; |
| 3572 | |
| 3573 | struct RegexMatcher : MatcherBase<std::string> { |
| 3574 | RegexMatcher( std::string regex, CaseSensitive::Choice caseSensitivity ); |