qmlFrontend/hwengine.h
author unc0rr
Fri, 12 Sep 2014 00:51:14 +0400
branchqmlfrontend
changeset 10402 3313336c1ee0
child 10416 1c301054694d
permissions -rw-r--r--
Let's get it started

#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