File indexing completed on 2024-12-15 03:44:59
0001 /* 0002 SPDX-FileCopyrightText: 2017 Volker Krause <vkrause@kde.org> 0003 0004 SPDX-License-Identifier: MIT 0005 */ 0006 0007 #ifndef KUSERFEEDBACK_CONSOLE_CHARTUTIL_H 0008 #define KUSERFEEDBACK_CONSOLE_CHARTUTIL_H 0009 0010 #include <qglobal.h> 0011 0012 #if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) 0013 namespace QtCharts { 0014 class QChart; 0015 } 0016 using QtCharts::QChart; 0017 #else 0018 class QChart; 0019 #endif 0020 0021 namespace KUserFeedback { 0022 namespace Console { 0023 0024 namespace ChartUtil 0025 { 0026 void applyTheme(QChart *chart); 0027 } 0028 0029 }} 0030 0031 #endif // KUSERFEEDBACK_CONSOLE_CHARTUTIL_H