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.
2022-10-13 15:18:06 +02:00

32 lines
524 B
C++

#ifndef SCRIPTTHINGMANAGER_H
#define SCRIPTTHINGMANAGER_H
#include "integrations/thingmanager.h"
#include <QObject>
#include <QQmlParserStatus>
namespace nymeaserver {
namespace scriptengine {
class ScriptThingManager : public QObject, public QQmlParserStatus
{
Q_OBJECT
public:
explicit ScriptThingManager(QObject *parent = nullptr);
void classBegin() override;
void componentComplete() override;
signals:
private:
ThingManager *m_thingManager = nullptr;
};
}
}
#endif // SCRIPTTHINGMANAGER_H