blob: 6a7160fad1b43a53fb8c50b0c6f4b05dedb80ba5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#ifndef ALLSCANNER_H
#define ALLSCANNER_H
#include <QtCore/QObject>
#include <QtCore/QList>
#include <sowatch.h>
namespace sowatch
{
class AllScanner : public WatchScanner
{
Q_OBJECT
public:
explicit AllScanner(QObject *parent = 0);
void start();
private:
QList<WatchScanner*> _scanners;
int _finishedCount;
private slots:
void handleFinished();
};
}
#endif // ALLSCANNER_H
|