AusweisApp2/src/settings/AutoStart_generic.cpp

26 lines
318 B
C++
Raw Normal View History

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