mirror of https://github.com/nymea/nymea.git
17 lines
294 B
C++
17 lines
294 B
C++
#include "platformplugin.h"
|
|
|
|
PlatformPlugin::PlatformPlugin(QObject *parent) : QObject(parent)
|
|
{
|
|
|
|
}
|
|
|
|
PlatformSystemController *PlatformPlugin::systemController() const
|
|
{
|
|
return m_systemStub;
|
|
}
|
|
|
|
PlatformUpdateController *PlatformPlugin::updateController() const
|
|
{
|
|
return m_updateStub;
|
|
}
|