File indexing completed on 2025-02-16 05:05:48
0001 /* 0002 SPDX-FileCopyrightText: 2012 Sebastian Kügler <sebas@kde.org> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #ifndef DPITEST_H 0008 #define DPITEST_H 0009 0010 #include <QCoreApplication> 0011 #include <QGuiApplication> 0012 0013 class QCommandLineParser; 0014 0015 namespace Plasma 0016 { 0017 class DPITestPrivate; 0018 0019 class DPITest : public QGuiApplication 0020 { 0021 Q_OBJECT 0022 0023 public: 0024 DPITest(int &argc, char **argv, QCommandLineParser *parser); 0025 ~DPITest() override; 0026 0027 public Q_SLOTS: 0028 void runMain(); 0029 0030 private: 0031 DPITestPrivate *d; 0032 }; 0033 0034 } 0035 0036 #endif