| 3162 | bool match( std::string const& source ) const override; |
| 3163 | }; |
| 3164 | struct EndsWithMatcher : StringMatcherBase { |
| 3165 | EndsWithMatcher( CasedString const& comparator ); |
| 3166 | bool match( std::string const& source ) const override; |
| 3167 | }; |
| 3168 | |
| 3169 | struct RegexMatcher : MatcherBase<std::string> { |
| 3170 | RegexMatcher( std::string regex, CaseSensitive::Choice caseSensitivity ); |