branch | qmlfrontend |
changeset 10402 | 3313336c1ee0 |
child 10416 | 1c301054694d |
10401:c31276023295 | 10402:3313336c1ee0 |
---|---|
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 |