| LCOV - code coverage report | ||||||||||||||||||||||
|
||||||||||||||||||||||
Line data Source code 1 : #pragma once 2 : 3 : #include <wfc/json.hpp> 4 : #include <memory> 5 : 6 : namespace wfc{ namespace jsonrpc{ 7 : 8 337 : struct imatcher 9 : { 10 337 : virtual ~imatcher() {} 11 : virtual bool configure(const char* beg, const char* end, json::json_error&) = 0; 12 : virtual bool match(const char* beg, const char* end, json::json_error& err) = 0; 13 : }; 14 : 15 : 16 : }} |
| Generated by: LCOV version 1.10 |