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/platform/platformsystemcontroller.cpp
2019-05-10 01:31:26 +02:00

22 lines
345 B
C++

#include "platformsystemcontroller.h"
PlatformSystemController::PlatformSystemController(QObject *parent) : QObject(parent)
{
}
bool PlatformSystemController::powerManagementAvailable() const
{
return false;
}
bool PlatformSystemController::reboot()
{
return false;
}
bool PlatformSystemController::shutdown()
{
return false;
}