Added some comments.

This commit is contained in:
Martin Rotter 2017-09-23 20:47:56 +02:00
parent fccf555d2e
commit b31881df77

View File

@ -174,7 +174,11 @@ class RootItem : public QObject {
QList<RootItem*> getSubTree() const;
QList<RootItem*> getSubTree(RootItemKind::Kind kind_of_item) const;
QList<Category*> getSubTreeCategories() const;
// Returns list of categories complemented by their own integer primary ID.
QHash<int, Category*> getHashedSubTreeCategories() const;
// Returns list of feeds complemented by their own string CUSTOM ID.
QHash<QString, Feed*> getHashedSubTreeFeeds() const;
QList<Feed*> getSubTreeFeeds() const;