File indexing completed on 2024-05-12 04:44:35

0001 // SPDX-FileCopyrightText: Lukas Sommer <sommerluk@gmail.com>
0002 // SPDX-License-Identifier: BSD-2-Clause OR MIT
0003 
0004 #ifndef SETTRANSLATION_H
0005 #define SETTRANSLATION_H
0006 
0007 #include "importexport.h"
0008 #include <qglobal.h>
0009 
0010 #if (QT_VERSION >= QT_VERSION_CHECK(6, 0, 0))
0011 #include <qcontainerfwd.h>
0012 #else
0013 #include <qstringlist.h>
0014 #endif
0015 
0016 class QCoreApplication;
0017 
0018 namespace PerceptualColor
0019 {
0020 
0021 void PERCEPTUALCOLOR_IMPORTEXPORT setTranslation(QCoreApplication *instance, const QStringList &newUiLanguages);
0022 
0023 } // namespace PerceptualColor
0024 
0025 #endif // SETTRANSLATION_H