* fix a lot of compiler warnings
[kdenetwork.git] / kget / transfer-plugins / bittorrent / torrentfilemodel.cpp
blob81f4b45780fe24719157e83f29f796935dfdd9e4
1 /** IMPORTANT: please keep this file in sync with ktorrent! ****************/
3 /***************************************************************************
4 * Copyright (C) 2007 by Joris Guisson and Ivan Vasic *
5 * joris.guisson@gmail.com *
6 * ivasic@gmail.com *
7 * *
8 * This program is free software; you can redistribute it and/or modify *
9 * it under the terms of the GNU General Public License as published by *
10 * the Free Software Foundation; either version 2 of the License, or *
11 * (at your option) any later version. *
12 * *
13 * This program is distributed in the hope that it will be useful, *
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16 * GNU General Public License for more details. *
17 * *
18 * You should have received a copy of the GNU General Public License *
19 * along with this program; if not, write to the *
20 * Free Software Foundation, Inc., *
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
22 ***************************************************************************/
23 #include <interfaces/torrentinterface.h>
24 #include <interfaces/torrentfileinterface.h>
25 #include "torrentfilemodel.h"
27 namespace kt
29 TorrentFileModel::TorrentFileModel(bt::TorrentInterface* tc,DeselectMode mode,QObject* parent)
30 : QAbstractItemModel(parent),tc(tc),mode(mode)
33 TorrentFileModel::~TorrentFileModel()
36 QByteArray TorrentFileModel::saveExpandedState(QTreeView* )
38 return QByteArray();
41 void TorrentFileModel::loadExpandedState(QTreeView* ,const QByteArray &)
44 void TorrentFileModel::missingFilesMarkedDND()
46 reset();
49 void TorrentFileModel::update()
54 #include "torrentfilemodel.moc"