File indexing completed on 2024-04-14 04:52:01

0001 /* This file is part of the KDE project
0002 
0003    Copyright (C) 2006 Dario Massarin <nekkar@libero.it>
0004 
0005    This program is free software; you can redistribute it and/or
0006    modify it under the terms of the GNU General Public
0007    License as published by the Free Software Foundation; either
0008    version 2 of the License, or (at your option) any later version.
0009 */
0010 
0011 #ifndef TRANSFERTREESELECTIONMODEL_H
0012 #define TRANSFERTREESELECTIONMODEL_H
0013 
0014 #include <QItemSelectionModel>
0015 
0016 class TransferTreeSelectionModel : public QItemSelectionModel
0017 {
0018     Q_OBJECT
0019 
0020 public:
0021     TransferTreeSelectionModel(QAbstractItemModel *model);
0022     ~TransferTreeSelectionModel() override;
0023 };
0024 
0025 #endif