plasma-framework/tests/dpi/dpitest.h

38 lines
521 B
C
Raw Normal View History

/*
SPDX-FileCopyrightText: 2012 Sebastian Kügler <sebas@kde.org>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
2014-01-17 13:48:17 +01:00
#ifndef DPITEST_H
#define DPITEST_H
2014-01-17 13:48:17 +01:00
#include <QCoreApplication>
#include <QGuiApplication>
2014-01-17 13:48:17 +01:00
class QCommandLineParser;
namespace Plasma
{
class DPITestPrivate;
class DPITest : public QGuiApplication
2014-01-17 13:48:17 +01:00
{
Q_OBJECT
2014-04-26 01:45:47 +02:00
public:
DPITest(int &argc, char **argv, QCommandLineParser *parser);
virtual ~DPITest();
2014-01-17 13:48:17 +01:00
2014-04-26 01:45:47 +02:00
public Q_SLOTS:
void runMain();
2014-01-17 13:48:17 +01:00
2014-04-26 01:45:47 +02:00
private:
DPITestPrivate *d;
2014-01-17 13:48:17 +01:00
};
}
#endif