formatting is changed according to last astyle settings
[qtrapids] / src / engine / AlertWaiterThread.h
index 4ee3b87..5c4af3f 100644 (file)
 */
 class AlertWaiterThread : public QThread
 {
-    Q_OBJECT
+       Q_OBJECT
 
 public:
-    AlertWaiterThread(TorrentSession *const session, QObject *parent = 0);
+       AlertWaiterThread(TorrentSession *const session, QObject *parent = 0);
 
-    virtual ~AlertWaiterThread();
+       virtual ~AlertWaiterThread();
 
-    void allAlerts(bool enable = true);
+       void allAlerts(bool enable = true);
 
-    virtual void run(); // Overridden from QThread
+       virtual void run(); // Overridden from QThread
 
 signals:
-    /// @TODO alert() uses direct connection, so th connected slot is executed by AlertWaiterThread
-    /// Hence, QMutex is needed in receiver slot/thread for thread-safety.
-    /// @NOTE Alternatively, we could use an event loop in the thread and use queued signal (is it heavier?)
-    void alert(Alert const *alert);
+       /// @TODO alert() uses direct connection, so th connected slot is executed by AlertWaiterThread
+       /// Hence, QMutex is needed in receiver slot/thread for thread-safety.
+       /// @NOTE Alternatively, we could use an event loop in the thread and use queued signal (is it heavier?)
+       void alert(Alert const *alert);
 
 private:
-    TorrentSession *const btSession_;
+       TorrentSession *const btSession_;
 
 };