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.
powersync-core/libnymea/experiences/experienceplugin.cpp
2019-11-01 20:55:02 +01:00

17 lines
304 B
C++

#include "experienceplugin.h"
ExperiencePlugin::ExperiencePlugin(QObject *parent) : QObject(parent)
{
}
QList<JsonHandler *> ExperiencePlugin::jsonHandlers() const
{
return m_jsonHandlers;
}
void ExperiencePlugin::registerJsonHandler(JsonHandler *handler)
{
m_jsonHandlers.append(handler);
}