Added verification of the type of token

This commit is contained in:
Benoit Blanchon
2014-01-11 16:41:18 +01:00
parent da37162a94
commit 4713e90f12
7 changed files with 74 additions and 74 deletions

View File

@ -1,7 +1,6 @@
/*
* malloc-free JSON parser for Arduino
* Benoit Blanchon 2014
* MIT License
* Benoit Blanchon 2014 - MIT License
*/
#ifndef __JSONARRAY_H
@ -31,13 +30,8 @@ public:
private:
JsonArray(char* json, jsmntok_t* tokens)
: JsonObjectBase(json, tokens)
{
}
JsonArray(char* json, jsmntok_t* tokens);
jsmntok_t* getToken(int index);
};
#endif
#endif