| 2978 | virtual bool match( std::string const& source ) const CATCH_OVERRIDE; |
| 2979 | }; |
| 2980 | struct StartsWithMatcher : StringMatcherBase { |
| 2981 | StartsWithMatcher( CasedString const& comparator ); |
| 2982 | virtual bool match( std::string const& source ) const CATCH_OVERRIDE; |
| 2983 | }; |
| 2984 | struct EndsWithMatcher : StringMatcherBase { |
| 2985 | EndsWithMatcher( CasedString const& comparator ); |
| 2986 | virtual bool match( std::string const& source ) const CATCH_OVERRIDE; |