21 #ifndef JSONPARSER_HH_INCLUDED
22 #define JSONPARSER_HH_INCLUDED
37 template <
typename R,
typename DestType>
39 m_reactor(
new R(reactor)),
47 void Parse(
const char *json, std::size_t len);
50 static void Callback(
void *user,
JSON_event type,
const char *data,
size_t len);
53 std::unique_ptr<Reactor> m_reactor;
54 std::vector<ParseState> m_stack;
Definition: JsonParser.hh:34
Definition: JSON_checker.h:66
JSON_checker new_JSON_checker(int depth)
Definition: JSON_checker.c:238
JSON_event
Definition: JSON_checker.h:21
Definition: Reactor.hh:42