| 2483 | bool match( std::string const& source ) const override; |
| 2484 | }; |
| 2485 | struct EndsWithMatcher : StringMatcherBase { |
| 2486 | EndsWithMatcher( CasedString const& comparator ); |
| 2487 | bool match( std::string const& source ) const override; |
| 2488 | }; |
| 2489 | |
| 2490 | struct RegexMatcher : MatcherBase<std::string> { |
| 2491 | RegexMatcher( std::string regex, CaseSensitive::Choice caseSensitivity ); |