View/Model support push_back

This commit is contained in:
Klaus Basan
2018-05-11 23:48:59 +02:00
parent 6addfb5fd8
commit 4c2aaf73e1
4 changed files with 68 additions and 1 deletions

View File

@@ -580,6 +580,12 @@ namespace BlackGui
//! Insert
void insert(const ContainerType &container, bool resize = true);
//! Push back
void push_back(const ObjectType &value, bool resize = true);
//! Push back
void push_back(const ContainerType &container, bool resize = true);
//! Value object at
const ObjectType &at(const QModelIndex &index) const;