kdelibs/knewstuff/tests/knewstuff2_standard.h
2014-11-13 01:04:59 +02:00

41 lines
1.1 KiB
C++

/*
This file is part of KNewStuff2.
Copyright (c) 2007 Josef Spillner <spillner@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef KNEWSTUFF2_TEST_STANDARD_H
#define KNEWSTUFF2_TEST_STANDARD_H
#include <knewstuff2/core/entry.h>
#include <QtCore/QObject>
namespace KNS
{
class Engine;
}
class KNewStuff2Standard : public QObject
{
Q_OBJECT
public:
KNewStuff2Standard();
void run(bool upload, bool modal, QString file);
private:
KNS::Engine *m_engine;
};
#endif