| 845 | namespace detail { |
| 846 | |
| 847 | class MatcherBase { |
| 848 | public: |
| 849 | virtual ~MatcherBase() = default; |
| 850 | |
| 851 | // Match request path and populate its matches and |
| 852 | virtual bool match(Request &request) const = 0; |
| 853 | }; |
| 854 | |
| 855 | /** |
| 856 | * Captures parameters in request path and stores them in Request::path_params |
nothing calls this directly
no outgoing calls
no test coverage detected