summaryrefslogtreecommitdiffstats
path: root/kio/kfile/tests/kfdtest.h
blob: 0743bb96c66ad60784ff29a38b08893328745fa7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/****************************************************************************
** $Id$
**
** Copyright (C) 2003 Carsten Pfeiffer <pfeiffer@kde.org>
**
****************************************************************************/

#ifndef KFDTEST_H
#define KFDTEST_H

#include <qobject.h>

class KFDTest : public QObject
{
    Q_OBJECT

public:
    KFDTest( const QString& startDir, QObject *parent = 0, const char *name = 0);

public slots:
    void doit();

private:
    QString m_startDir;
};


#endif // KFDTEST_H