| 3142 | bool match( std::string const& source ) const override; |
| 3143 | }; |
| 3144 | struct EndsWithMatcher : StringMatcherBase { |
| 3145 | EndsWithMatcher( CasedString const& comparator ); |
| 3146 | bool match( std::string const& source ) const override; |
| 3147 | }; |
| 3148 | |
| 3149 | struct RegexMatcher : MatcherBase<std::string> { |
| 3150 | RegexMatcher( std::string regex, CaseSensitive::Choice caseSensitivity ); |