mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 19:02:48 +00:00
26 lines
373 B
C++
26 lines
373 B
C++
// -*- c++ -*-
|
|
#ifndef SPEED_H
|
|
#define SPEED_H
|
|
|
|
#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
|