File indexing completed on 2023-10-01 08:39:31
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 #include "core/transfertreeselectionmodel.h" 0012 0013 #include "core/transfertreemodel.h" 0014 0015 TransferTreeSelectionModel::TransferTreeSelectionModel(QAbstractItemModel *model) 0016 : QItemSelectionModel(model) 0017 { 0018 } 0019 0020 TransferTreeSelectionModel::~TransferTreeSelectionModel() 0021 { 0022 } 0023 0024 #include "moc_transfertreeselectionmodel.cpp"