This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2019-12-01 00:07:35 +01:00

28 lines
389 B
C++

#ifndef SCRIPTENGINE_H
#define SCRIPTENGINE_H
#include <QObject>
class DeviceManager;
namespace nymeaserver {
class ScriptEngine : public QObject
{
Q_OBJECT
public:
explicit ScriptEngine(DeviceManager *deviceManager, QObject *parent = nullptr);
signals:
private:
void loadScripts();
private:
DeviceManager *m_deviceManager = nullptr;
};
}
#endif // SCRIPTENGINE_H