| 672 | namespace detail { |
| 673 | |
| 674 | class MatcherBase { |
| 675 | public: |
| 676 | virtual ~MatcherBase() = default; |
| 677 | |
| 678 | // Match request path and populate its matches and |
| 679 | virtual bool match(Request &request) const = 0; |
| 680 | }; |
| 681 | |
| 682 | /** |
| 683 | * Captures parameters in request path and stores them in Request::path_params |
nothing calls this directly
no outgoing calls
no test coverage detected