| 2347 | bool match(std::string const &source) const override; |
| 2348 | }; |
| 2349 | struct StartsWithMatcher : StringMatcherBase { |
| 2350 | StartsWithMatcher(CasedString const &comparator); |
| 2351 | bool match(std::string const &source) const override; |
| 2352 | }; |
| 2353 | struct EndsWithMatcher : StringMatcherBase { |
| 2354 | EndsWithMatcher(CasedString const &comparator); |
| 2355 | bool match(std::string const &source) const override; |