10Duke Enterprise C++ Client
Loading...
Searching...
No Matches
NJJSONParser.h
1#ifndef TENDUKE_JSON_NJ_NJJSONPARSER_H
2#define TENDUKE_JSON_NJ_NJJSONPARSER_H
3
4#include "json/JSONParser.h"
5
6namespace tenduke { namespace json { namespace nj {
7
12{
14public:
15 std::unique_ptr<JSONElement> from(const char *jsonAsString, std::size_t length) const override;
16 std::unique_ptr<JSONElement> from(const std::string &string) const override;
17};
18
19}}}
20
21#endif //TENDUKE_CLIENT_CORE_NJJSONPARSER_H
Parser for JSON documents.
Definition JSONParser.h:15
Implementation of tenduke::json::JSONParser using nlohmann/json.
Definition NJJSONParser.h:12
std::unique_ptr< JSONElement > from(const char *jsonAsString, std::size_t length) const override
tenduke::json::JSONParser implementation
Definition NJJSONParser.cpp:72
JSON support.
Definition JSONArray.h:10
Root for classes, functions and globals of 10Duke C++ Client.
Definition APIRequest.h:4