Advertisement
Guest User

yao

a guest
Oct 7th, 2015
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. void appendChild(TreeItem *child);
  2.  
  3. TreeItem *child(int row);
  4. int childCount() const;
  5. int columnCount() const;
  6. QVariant data(int column) const;
  7. int row() const;
  8. TreeItem *parentItem();
  9.  
  10. private:
  11. QList<TreeItem*> m_childItems;
  12. QList<QVariant> m_itemData;
  13. TreeItem *m_parentItem;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement