OSDN Git Service

Ver0.26
[gefu/Gefu.git] / operationworker.h
1 #ifndef OPERATIONWORKER_H
2 #define OPERATIONWORKER_H
3
4 #include "abstractworker.h"
5
6 class OperationWorker : public AbstractWorker
7 {
8     Q_OBJECT
9 public:
10     explicit OperationWorker() :
11         AbstractWorker()
12     {
13     }
14
15     virtual QString initialText() const = 0;
16
17 signals:
18     void    information(const QString &msg);
19     void    error(const QString &msg);
20     void    progress(const QString &msg);
21     void    success(const QString &msg);
22
23 public slots:
24
25 };
26
27 #endif // OPERATIONWORKER_H