| 3518 | bool match( std::string const& source ) const override; |
| 3519 | }; |
| 3520 | struct EndsWithMatcher : StringMatcherBase { |
| 3521 | EndsWithMatcher( CasedString const& comparator ); |
| 3522 | bool match( std::string const& source ) const override; |
| 3523 | }; |
| 3524 | |
| 3525 | struct RegexMatcher : MatcherBase<std::string> { |
| 3526 | RegexMatcher( std::string regex, CaseSensitive::Choice caseSensitivity ); |