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

23 lines
480 B
C++

#include "scriptengine.h"
#include "devices/devicemanager.h"
#include <QQmlApplicationEngine>
namespace nymeaserver {
ScriptEngine::ScriptEngine(DeviceManager *deviceManager, QObject *parent) : QObject(parent),
m_deviceManager(deviceManager)
{
loadScripts();
}
void ScriptEngine::loadScripts()
{
QString fileName = "/home/micha/Develop/nymea/tests/script.qml";
QQmlApplicationEngine *engine = new QQmlApplicationEngine(this);
engine->load(fileName);
}
}