Make orientation switch explicit on Symbian, too.
[dorian] / model / bookfinder.h
1 #ifndef BOOKFINDER_H
2 #define BOOKFINDER_H
3
4 #include <QObject>
5 #include <QThread>
6
7 class QStringList;
8 class QString;
9
10 /** Find new books in a folder. */
11 class BookFinder: public QObject
12 {
13     Q_OBJECT
14
15 public:
16     explicit BookFinder(QObject *parent = 0);
17
18 public slots:
19     void find(const QString &directory, const QStringList &books);
20
21 signals:
22     void begin(int count);
23     void add(const QString &bookPath);
24     void done(int count);
25 };
26
27 #endif // BOOKFINDER_H