qmlFrontend/hwengine.h
author unc0rr
Tue, 16 Sep 2014 12:46:58 +0400
branchqmlfrontend
changeset 10408 5fdc42ef5bcc
parent 10402 3313336c1ee0
child 10416 1c301054694d
permissions -rw-r--r--
Some more of ignoration

#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