branch | qmlfrontend |
changeset 10402 | 3313336c1ee0 |
child 10416 | 1c301054694d |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/qmlFrontend/hwengine.h Fri Sep 12 00:51:14 2014 +0400 @@ -0,0 +1,23 @@ +#ifndef HWENGINE_H +#define HWENGINE_H + +#include <QObject> + +class HWEngine : public QObject +{ + Q_OBJECT +public: + explicit HWEngine(QObject *parent = 0); + ~HWEngine(); + + static void exposeToQML(); + Q_INVOKABLE void run(); + +signals: + +public slots: + +}; + +#endif // HWENGINE_H +