Added build script of Debian
[qtrapids] / src / server / AlertWaiterThread.hpp
index ef13a8c..e17b0a1 100644 (file)
@@ -1,11 +1,9 @@
 /***************************************************************************
- *   Copyright (C) 2009 by Lassi Väätämöinen   *
- *   lassi.vaatamoinen@ixonos.com   *
+ *   Copyright (C) 2010 by Ixonos Plc   *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
  *   it under the terms of the GNU General Public License as published by  *
- *   the Free Software Foundation; either version 2 of the License, or     *
- *   (at your option) any later version.                                   *
+ *   the Free Software Foundation; version 2 of the License.               *
  *                                                                         *
  *   This program is distributed in the hope that it will be useful,       *
  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
@@ -21,6 +19,7 @@
 #define ALERTWAITERTHREAD_H
 
 #include <QThread>
+#include <QMutex>
 #include "TorrentSession.hpp"
 
 namespace qtrapids
@@ -31,23 +30,26 @@ namespace qtrapids
 */
 class AlertWaiterThread : public QThread
 {
-    Q_OBJECT
+       Q_OBJECT
 
 public:
-    AlertWaiterThread(session_t *session, QObject *parent = 0);
+       AlertWaiterThread(session_t *session, QObject *parent = 0);
 
-    virtual ~AlertWaiterThread();
+       virtual ~AlertWaiterThread();
 
-    void allAlerts(bool enable = true);
-
-    virtual void run(); // Overridden from QThread
+       void allAlerts(bool enable = true);
 
+       virtual void run(); // Overridden from QThread
+       
+       virtual void stop();
+       
 signals:
-    void alert();
+       void alert();
 
 private:
-    session_t *const btSession_;
-
+       session_t *const btSession_;
+       bool running_;
+       QMutex alertMutex_;
 };
 
 } // namespace qtrapids