You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
521 B
29 lines
521 B
15 years ago
|
/****************************************************************************
|
||
|
** $Id$
|
||
|
**
|
||
|
** Copyright (C) 2003 Carsten Pfeiffer <pfeiffer@kde.org>
|
||
|
**
|
||
|
****************************************************************************/
|
||
|
|
||
|
#ifndef KFDTEST_H
|
||
|
#define KFDTEST_H
|
||
|
|
||
14 years ago
|
#include <tqobject.h>
|
||
15 years ago
|
|
||
14 years ago
|
class KFDTest : public TQObject
|
||
15 years ago
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
14 years ago
|
KFDTest( const TQString& startDir, TQObject *parent = 0, const char *name = 0);
|
||
15 years ago
|
|
||
|
public slots:
|
||
|
void doit();
|
||
|
|
||
|
private:
|
||
14 years ago
|
TQString m_startDir;
|
||
15 years ago
|
};
|
||
|
|
||
|
|
||
|
#endif // KFDTEST_H
|