Extracting a common base class for JsonArray and JsonObject...

This commit is contained in:
Benoit Blanchon
2014-11-05 11:53:08 +01:00
parent 0fb4fa8f86
commit a9f4f611d4
7 changed files with 26 additions and 36 deletions

View File

@@ -34,6 +34,8 @@ class List {
protected:
node_type *createNode();
void addNode(node_type *node);
void removeNode(node_type *nodeToRemove);
JsonBuffer *_buffer;
node_type *_firstNode;