#ifndef _main_h #define _main_h #include #include #include #include namespace TDEIO { class Job; } class KIOExec : public TQObject { Q_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 fileList; }; #endif