21 lines
405 B
C++
21 lines
405 B
C++
|
/* === This file is part of Calamares - <https://calamares.io> ===
|
||
|
*
|
||
|
* SPDX-FileCopyrightText: 2020 Adriaan de Groot <groot@kde.org>
|
||
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
*
|
||
|
* Calamares is Free Software: see the License-Identifier above.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#include "Config.h"
|
||
|
|
||
|
Config::Config( QObject* parent )
|
||
|
: QObject( parent )
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void
|
||
|
Config::setConfigurationMap( const QVariantMap& )
|
||
|
{
|
||
|
}
|