Added build script of Debian
[qtrapids] / src / server / AlertWaiterThread.hpp
index 3008638..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
@@ -41,13 +40,16 @@ public:
        void allAlerts(bool enable = true);
 
        virtual void run(); // Overridden from QThread
-
+       
+       virtual void stop();
+       
 signals:
        void alert();
 
 private:
        session_t *const btSession_;
-
+       bool running_;
+       QMutex alertMutex_;
 };
 
 } // namespace qtrapids