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

This commit is contained in:
Benoit Blanchon
2014-11-05 11:43:59 +01:00
parent 7d73e63c78
commit 0fb4fa8f86
6 changed files with 10 additions and 15 deletions

View File

@@ -33,6 +33,8 @@ class List {
const_iterator end() const { return const_iterator(NULL); }
protected:
node_type *createNode();
JsonBuffer *_buffer;
node_type *_firstNode;
};