qmlFrontend/hwengine.h
author unc0rr
Sat, 13 Sep 2014 00:27:10 +0400
branchqmlfrontend
changeset 10404 1baaab44a0b2
parent 10402 3313336c1ee0
child 10416 1c301054694d
permissions -rw-r--r--
- Fix arguments parsing in engine assuming paramcount > 0 - Pass "--help" for testing

#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