Code formatting/indentation unified in trunk
[qtrapids] / src / engine / QBittorrentSession.h
1 /***************************************************************************
2  *   Copyright (C) 2009 by Lassi Väätämöinen   *
3  *   lassi.vaatamoinen@ixonos.com   *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20 #ifndef QBITTORRENTSESSION_H
21 #define QBITTORRENTSESSION_H
22
23 #include <memory>
24
25 #include <QObject>
26
27 #include <libtorrent/session.hpp>
28 #include <libtorrent/torrent_info.hpp>
29 #include <libtorrent/alert_types.hpp>
30
31 #include "QTorrentHandle.h"
32
33
34 // Forward declarations and typedefs
35 class AlertWaiterThread;
36 typedef libtorrent::session TorrentSession;
37 typedef libtorrent::add_torrent_params AddTorrentParams;
38 typedef libtorrent::alert Alert;
39 typedef libtorrent::torrent_alert TorrentAlert;
40 typedef libtorrent::sha1_hash Sha1Hash;
41
42
43 namespace qtrapids
44 {
45
46 /**
47         @author Lassi Väätämöinen <lassi.vaatamoinen@ixonos.com>
48 */
49 class QBittorrentSession : public QObject
50 {
51     Q_OBJECT
52 //              class   BitTorrentSession;
53
54 public:
55     QBittorrentSession(QObject *parent = 0);
56     ~QBittorrentSession();
57
58     /// @brief Add torrent to session.
59     qtrapids::QTorrentHandle addTorrent(AddTorrentParams const& params);
60     void removeTorrent(qtrapids::QTorrentHandle const& handle);
61
62 signals:
63     void alert(std::auto_ptr<Alert> al);
64
65 private slots:
66     void on_alert(Alert const *al);
67
68 private:
69     TorrentSession btSession_;
70     AlertWaiterThread *alertWaiter_;
71
72 };
73
74 } //namespace qtrapids
75 #endif