mirror of https://github.com/nymea/nymea.git
22 lines
345 B
C++
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;
|
|
}
|