2014-01-17 13:48:17 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* Copyright 2012 Sebastian Kügler <sebas@kde.org> *
|
|
|
|
* *
|
|
|
|
* This library is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU Library General Public *
|
|
|
|
* License as published by the Free Software Foundation; either *
|
|
|
|
* version 2 of the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This library is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
|
|
|
|
* Library General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU Library General Public License *
|
|
|
|
* along with this library; see the file COPYING.LIB. If not, write to *
|
|
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, *
|
|
|
|
* Boston, MA 02110-1301, USA. *
|
|
|
|
*******************************************************************************/
|
|
|
|
|
|
|
|
#ifndef PLUGINTEST_H
|
|
|
|
#define PLUGINTEST_H
|
|
|
|
|
|
|
|
#include <QCoreApplication>
|
2014-05-19 16:58:37 +02:00
|
|
|
#include <QGuiApplication>
|
2014-01-17 13:48:17 +01:00
|
|
|
|
|
|
|
class QCommandLineParser;
|
|
|
|
|
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
|
|
|
|
class DPITestPrivate;
|
|
|
|
|
2014-05-19 16:58:37 +02:00
|
|
|
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
|