Allow to clear, insert, and push values of the model.

This commit is contained in:
Klaus Basan
2014-02-05 21:23:54 +00:00
committed by Mathew Sutcliffe
parent f476388f8b
commit 576952b690
2 changed files with 43 additions and 0 deletions

View File

@@ -155,6 +155,14 @@ namespace BlackGui
*/
virtual void sort(int column, Qt::SortOrder order);
//! \brief Similar to ListType::push_back
virtual void push_back(const ObjectType &object);
//! \brief Similar to ListType::insert here inserts at first position
virtual void insert(const ObjectType &object);
//! \brief clear the list
virtual void clear();
};
}
#endif // guard