| LCOV - code coverage report | ||||||||||||||||||||||
|
||||||||||||||||||||||
Line data Source code 1 : #pragma once 2 : 3 : #include "imatcher.hpp" 4 : #include <boost/regex.hpp> 5 : #include <string> 6 : 7 : namespace wfc{ namespace jsonrpc{ 8 : 9 162 : class regex_match 10 : : public imatcher 11 : { 12 : boost::regex _reg; 13 : std::string _str; 14 : public: 15 : virtual bool configure(const char* beg, const char* end, json::json_error& err) override; 16 : virtual bool match(const char* beg, const char* end, json::json_error& err) override; 17 : }; 18 : 19 : 20 : }} |
| Generated by: LCOV version 1.10 |