formatting is changed according to last astyle settings
[qtrapids] / src / engine / QBittorrentSession.h
index 9cf5381..ac2fa8c 100644 (file)
@@ -40,31 +40,36 @@ typedef     libtorrent::torrent_alert TorrentAlert;
 typedef libtorrent::sha1_hash Sha1Hash;
 
 
+namespace qtrapids
+{
+
 /**
        @author Lassi Väätämöinen <lassi.vaatamoinen@ixonos.com>
 */
-class QBittorrentSession : public QObject {
+class QBittorrentSession : public QObject
+{
        Q_OBJECT
 //             class   BitTorrentSession;
-                       
-       public:
-               QBittorrentSession(QObject *parent = 0);
-    ~QBittorrentSession();
-               
-               /// @brief Add torrent to session.
-               QTorrentHandle addTorrent(AddTorrentParams const& params);
-               void removeTorrent(QTorrentHandle const& handle);
-               
-       signals:
-               void alert(std::auto_ptr<Alert> al);
-               
-       private slots:
-               void on_alert(Alert const *al);
-               
-       private:
-               TorrentSession btSession_;
-               AlertWaiterThread *alertWaiter_;
-               
+
+public:
+       QBittorrentSession(QObject *parent = 0);
+       ~QBittorrentSession();
+
+       /// @brief Add torrent to session.
+       qtrapids::QTorrentHandle addTorrent(AddTorrentParams const& params);
+       void removeTorrent(qtrapids::QTorrentHandle const& handle);
+
+signals:
+       void alert(std::auto_ptr<Alert> al);
+
+private slots:
+       void on_alert(Alert const *al);
+
+private:
+       TorrentSession btSession_;
+       AlertWaiterThread *alertWaiter_;
+
 };
 
+} //namespace qtrapids
 #endif