24 lines
522 B
C
24 lines
522 B
C
|
/* === This file is part of Calamares - <https://calamares.io> ===
|
||
|
*
|
||
|
* SPDX-FileCopyrightText: 2022 Adriaan de Groot <groot@kde.org>
|
||
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
*
|
||
|
* Calamares is Free Software: see the License-Identifier above.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef CALAMARES_CALAMARESABOUT_H
|
||
|
#define CALAMARES_CALAMARESABOUT_H
|
||
|
|
||
|
#include "DllMacro.h"
|
||
|
|
||
|
#include <QString>
|
||
|
|
||
|
namespace Calamares
|
||
|
{
|
||
|
DLLEXPORT const QString aboutStringUntranslated();
|
||
|
DLLEXPORT const QString aboutString();
|
||
|
} // namespace Calamares
|
||
|
|
||
|
#endif
|