Commit 789ddd6ed97ae4f6f0e90280e77638e0eca4dee1
1 parent
37b0bbac
Exists in
master
aX
Showing
2 changed files
with
24 additions
and
0 deletions
Show diff stats
... | ... | @@ -0,0 +1,18 @@ |
1 | +#ifndef CACICTHREAD_H | |
2 | +#define CACICTHREAD_H | |
3 | + | |
4 | +#include <QThread> | |
5 | + | |
6 | +class CacicThread : public QThread | |
7 | +{ | |
8 | + Q_OBJECT | |
9 | +public: | |
10 | + explicit CacicThread(QObject *parent = 0); | |
11 | + | |
12 | +signals: | |
13 | + | |
14 | +public slots: | |
15 | + | |
16 | +}; | |
17 | + | |
18 | +#endif // CACICTHREAD_H | ... | ... |