mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 02:42:48 +00:00
27 lines
375 B
C
27 lines
375 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
|