chatslistmodel.cpp 409 B

12345678910111213141516171819202122232425
  1. #include "chatslistmodel.h"
  2. ChatsListModel::ChatsListModel( QObject *parent ) :ListModel( new RosterItemModel, parent )
  3. {
  4. }
  5. void ChatsListModel::append( RosterItemModel *item ) {
  6. this->appendRow( item );
  7. }
  8. void ChatsListModel::remove( int index ) {
  9. this->removeRow( index );
  10. }
  11. int ChatsListModel::count() {
  12. return this->rowCount();
  13. }
  14. void ChatsListModel::clearList()
  15. {
  16. this->clear();
  17. }