/* SPDX-FileCopyrightText: 2012 Sebastian Kügler SPDX-License-Identifier: LGPL-2.0-or-later */ #ifndef DPITEST_H #define DPITEST_H #include #include class QCommandLineParser; namespace Plasma { class DPITestPrivate; class DPITest : public QGuiApplication { Q_OBJECT public: DPITest(int &argc, char **argv, QCommandLineParser *parser); virtual ~DPITest(); public Q_SLOTS: void runMain(); private: DPITestPrivate *d; }; } #endif