#ifndef JSONTREEITEM_H #define JSONTREEITEM_H #include #include #include #include #include #include #include "JsonModel.h" class JsonTreeItem { public: JsonTreeItem(JsonTreeItem * parent = 0); ~JsonTreeItem(); void appendChild(JsonTreeItem * item); JsonTreeItem *child(int row); JsonTreeItem *parent(); int childCount() const; int row() const; void setKey(const QString& key); void setValue(const QString& value); void setType(const QJsonValue::Type& type); QString key() const; QString value() const; QJsonValue::Type type() const; static JsonTreeItem *load(const QJsonValue& value, JsonTreeItem * parent = 0); private: QString mKey; QString mValue; QJsonValue::Type mType; QList mChilds; JsonTreeItem *mParent; }; #endif // JSONTREEITEM_H