add missing namespace

This commit is contained in:
Michael Zanetti 2019-05-10 12:49:37 +02:00
parent 99260c67b0
commit 10d2888916

View File

@ -4,6 +4,8 @@
#include "platform/platformupdatecontroller.h" #include "platform/platformupdatecontroller.h"
#include "platform/platformsystemcontroller.h" #include "platform/platformsystemcontroller.h"
namespace nymeaserver {
SystemHandler::SystemHandler(Platform *platform, QObject *parent): SystemHandler::SystemHandler(Platform *platform, QObject *parent):
JsonHandler(parent), JsonHandler(parent),
m_platform(platform) m_platform(platform)
@ -146,3 +148,5 @@ void SystemHandler::onUpdateStatusChanged()
params.insert("updateInProgress", m_platform->updateController()->updateInProgress()); params.insert("updateInProgress", m_platform->updateController()->updateInProgress());
emit UpdateStatusChanged(params); emit UpdateStatusChanged(params);
} }
}