diff options
Diffstat (limited to 'sowatchd/allscanner.h')
-rw-r--r-- | sowatchd/allscanner.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/sowatchd/allscanner.h b/sowatchd/allscanner.h new file mode 100644 index 0000000..6a7160f --- /dev/null +++ b/sowatchd/allscanner.h @@ -0,0 +1,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 |