AusweisApp2/src/settings/AutoStart_generic.cpp

27 lines
374 B
C++
Raw Normal View History

2017-12-20 14:54:05 +01:00
/*!
2018-03-28 15:10:51 +02:00
* \copyright Copyright (c) 2014-2018 Governikus GmbH & Co. KG, Germany
2017-12-20 14:54:05 +01:00
*/
#include "AutoStart.h"
2018-03-28 15:10:51 +02:00
#include <QLoggingCategory>
2017-12-20 14:54:05 +01:00
using namespace governikus;
2018-03-28 15:10:51 +02:00
Q_DECLARE_LOGGING_CATEGORY(settings)
2017-12-20 14:54:05 +01:00
bool AutoStart::enabled()
{
return false;
}
void AutoStart::set(bool pEnabled)
{
if (pEnabled)
{
2018-03-28 15:10:51 +02:00
qCDebug(settings) << "Autostart not supported on this system";
2017-12-20 14:54:05 +01:00
}
}