kdelibs/kio/tests/speed.h

27 lines
373 B
C
Raw Normal View History

2014-11-13 01:04:59 +02:00
// -*- c++ -*-
2015-07-11 18:42:46 +03:00
#ifndef SPEED_H
#define SPEED_H
2014-11-13 01:04:59 +02:00
#include <kio/global.h>
#include <kurl.h>
#include <kio/udsentry.h>
class KJob;
namespace KIO {
class Job;
}
class SpeedTest : public QObject {
Q_OBJECT
public:
SpeedTest(const KUrl & url);
private Q_SLOTS:
void entries( KIO::Job *, const KIO::UDSEntryList& );
void finished( KJob *job );
};
#endif