Added Q_FUNC_INFO macros to some functions.
[qtrapids] / src / server / AlertWaiterThread.hpp
1 /***************************************************************************
2  *   Copyright (C) 2010 by Ixonos Plc   *
3  *                                                                         *
4  *   This program is free software; you can redistribute it and/or modify  *
5  *   it under the terms of the GNU General Public License as published by  *
6  *   the Free Software Foundation; version 2 of the License.               *
7  *                                                                         *
8  *   This program is distributed in the hope that it will be useful,       *
9  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
10  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
11  *   GNU General Public License for more details.                          *
12  *                                                                         *
13  *   You should have received a copy of the GNU General Public License     *
14  *   along with this program; if not, write to the                         *
15  *   Free Software Foundation, Inc.,                                       *
16  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
17  ***************************************************************************/
18 #ifndef ALERTWAITERTHREAD_H
19 #define ALERTWAITERTHREAD_H
20
21 #include <QThread>
22 #include <QMutex>
23 #include "TorrentSession.hpp"
24
25 namespace qtrapids
26 {
27
28 /**
29    @author Lassi Väätämöinen <lassi.vaatamoinen@ixonos.com>
30 */
31 class AlertWaiterThread : public QThread
32 {
33         Q_OBJECT
34
35 public:
36         AlertWaiterThread(session_t *session, QObject *parent = 0);
37
38         virtual ~AlertWaiterThread();
39
40         void allAlerts(bool enable = true);
41
42         virtual void run(); // Overridden from QThread
43         
44         virtual void stop();
45         
46 signals:
47         void alert();
48
49 private:
50         session_t *const btSession_;
51         bool running_;
52         QMutex alertMutex_;
53 };
54
55 } // namespace qtrapids
56
57 #endif