AusweisApp2/src/settings/AutoStart_generic.cpp

33 lines
426 B
C++

/*!
* \copyright Copyright (c) 2014-2019 Governikus GmbH & Co. KG, Germany
*/
#include "AutoStart.h"
#include <QLoggingCategory>
using namespace governikus;
Q_DECLARE_LOGGING_CATEGORY(settings)
bool AutoStart::enabled()
{
return false;
}
bool AutoStart::isSetByAdmin()
{
return false;
}
void AutoStart::set(bool pEnabled)
{
if (pEnabled)
{
qCDebug(settings) << "Autostart not supported on this system";
}
}