File indexing completed on 2024-04-21 14:56:11

0001 /****************************************************************************
0002 **
0003 ** Copyright (C) 2003 Carsten Pfeiffer <pfeiffer@kde.org>
0004 **
0005 ****************************************************************************/
0006 
0007 #ifndef KFDTEST_H
0008 #define KFDTEST_H
0009 
0010 #include <QObject>
0011 #include <QUrl>
0012 
0013 class KFDTest : public QObject
0014 {
0015     Q_OBJECT
0016 
0017 public:
0018     KFDTest(const QUrl &startDir, QObject *parent = nullptr, const char *name = nullptr);
0019 
0020 public Q_SLOTS:
0021     void doit();
0022 
0023 private:
0024     QUrl m_startDir;
0025 };
0026 
0027 #endif // KFDTEST_H