Added JsonParser_String_Tests.cpp

This commit is contained in:
Benoit Blanchon
2014-10-16 21:54:42 +02:00
parent a0a82c0f4e
commit 2a62132bf0
3 changed files with 55 additions and 2 deletions

View File

@ -26,7 +26,9 @@ public:
JsonValue createValue();
JsonArray parseArray(char* string);
JsonArray parseArray(char* json);
JsonValue parseValue(char* json);
protected:
virtual void* allocateNode() = 0;
@ -41,4 +43,3 @@ private:
JsonNode* createObjectNode();
JsonNode* createStringNode(const char* value);
};