summaryrefslogtreecommitdiffstats
path: root/tdeio/tests/speed.h
blob: cd59cb6f6be2278b2c0ad642714f9b669b6011d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef _SPEED_H
#define _SPEED_H

#include <tdeio/global.h>
#include <kurl.h>

namespace TDEIO {
    class Job;
}

class SpeedTest : public TQObject {
    Q_OBJECT

public:
    SpeedTest(const KURL & url);

private slots:
    void entries( TDEIO::Job *, const TDEIO::UDSEntryList& );
    void finished( TDEIO::Job *job );

};

#endif