您最多能選擇 25 個主題 主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。
tdelibs/tdeio/tdeioexec/main.h

36 行
560 B

#ifndef _main_h
#define _main_h
#include <tqobject.h>
#include <tqstring.h>
#include <tqstrlist.h>
#include <tqtimer.h>
namespace TDEIO { class Job; }
class KIOExec : public TQObject
{
TQ_OBJECT
public:
KIOExec();
public slots:
void slotResult( TDEIO::Job * );
void slotRunApp();
protected:
bool tempfiles;
TQString suggestedFileName;
int counter;
int expectedCounter;
TQString command;
struct fileInfo {
TQString path;
KURL url;
int time;
};
TQValueList<fileInfo> fileList;
};
#endif