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
522 B
29 lines
522 B
/****************************************************************************
|
|
** $Id$
|
|
**
|
|
** Copyright (C) 2003 Carsten Pfeiffer <pfeiffer@kde.org>
|
|
**
|
|
****************************************************************************/
|
|
|
|
#ifndef KFDTEST_H
|
|
#define KFDTEST_H
|
|
|
|
#include <tqobject.h>
|
|
|
|
class KFDTest : public TQObject
|
|
{
|
|
TQ_OBJECT
|
|
|
|
public:
|
|
KFDTest( const TQString& startDir, TQObject *parent = 0, const char *name = 0);
|
|
|
|
public slots:
|
|
void doit();
|
|
|
|
private:
|
|
TQString m_startDir;
|
|
};
|
|
|
|
|
|
#endif // KFDTEST_H
|