msglistmodel.cpp 386 B

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