mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 02:42:48 +00:00
21 lines
383 B
C++
21 lines
383 B
C++
/*
|
|
* Copyright (C) 2012 Rolf Eike Beer <kde@opensource.sf-tec.de>
|
|
*/
|
|
|
|
#ifndef DATAPROTOCOLTEST_H
|
|
#define DATAPROTOCOLTEST_H
|
|
|
|
#include <kio/global.h>
|
|
#include <qtest_kde.h>
|
|
|
|
#include <QtCore/QObject>
|
|
#include <QtCore/QString>
|
|
|
|
class DataProtocolTest : public QObject {
|
|
Q_OBJECT
|
|
private Q_SLOTS:
|
|
void runAllTests();
|
|
void runAllTests_data();
|
|
};
|
|
|
|
#endif /* DATAPROTOCOLTEST_H */
|