author | unc0rr |
Fri, 12 Sep 2014 00:51:14 +0400 | |
branch | qmlfrontend |
changeset 10402 | 3313336c1ee0 |
child 10416 | 1c301054694d |
permissions | -rw-r--r-- |
10402 | 1 |
#ifndef HWENGINE_H |
2 |
#define HWENGINE_H |
|
3 |
||
4 |
#include <QObject> |
|
5 |
||
6 |
class HWEngine : public QObject |
|
7 |
{ |
|
8 |
Q_OBJECT |
|
9 |
public: |
|
10 |
explicit HWEngine(QObject *parent = 0); |
|
11 |
~HWEngine(); |
|
12 |
||
13 |
static void exposeToQML(); |
|
14 |
Q_INVOKABLE void run(); |
|
15 |
||
16 |
signals: |
|
17 |
||
18 |
public slots: |
|
19 |
||
20 |
}; |
|
21 |
||
22 |
#endif // HWENGINE_H |
|
23 |