Files
ArduinoJson/JsonParser/JsonParser.h

35 lines
921 B
C
Raw Permalink Normal View History

2014-07-03 13:58:08 +02:00
/*
* Arduino JSON library
* Benoit Blanchon 2014 - MIT License
2014-07-22 20:14:25 +02:00
*/
2014-07-03 13:58:08 +02:00
#pragma once
2014-07-14 13:17:30 +02:00
#include "JsonParserBase.h"
2014-07-03 14:00:51 +02:00
namespace ArduinoJson
{
2014-07-03 14:00:51 +02:00
namespace Parser
{
2014-07-22 20:14:25 +02:00
// The JSON parser.
//
// You need to specifiy the number of token to be allocated for that parser.
//
// CAUTION: JsonArray, JsonObject and JsonValue contain pointers to tokens of the
// JsonParser, so they need the JsonParser to be in memory to work.
// As a result, you must not create JsonArray, JsonObject or JsonValue that have a
// longer life that the JsonParser.
2014-07-03 14:00:51 +02:00
template <int MAX_TOKENS>
2014-07-14 13:17:30 +02:00
class JsonParser : public JsonParserBase
2014-07-03 14:00:51 +02:00
{
public:
2014-07-14 13:17:30 +02:00
JsonParser()
: JsonParserBase(tokens, MAX_TOKENS)
2014-07-03 14:00:51 +02:00
{
}
2014-07-03 14:00:51 +02:00
private:
jsmntok_t tokens[MAX_TOKENS];
};
}
}