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
432 B
29 lines
432 B
15 years ago
|
#ifndef _BLA_H_
|
||
|
#define _BLA_H_
|
||
|
|
||
|
#include <kprocess.h>
|
||
14 years ago
|
#include <tqstring.h>
|
||
|
#include <tqobject.h>
|
||
15 years ago
|
|
||
14 years ago
|
class TestService : public TQObject
|
||
15 years ago
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
14 years ago
|
TestService(const TQString &exec);
|
||
15 years ago
|
|
||
|
int exec();
|
||
|
|
||
|
public slots:
|
||
14 years ago
|
void newApp(const TQCString &appId);
|
||
|
void endApp(const TQCString &appId);
|
||
15 years ago
|
void appExit();
|
||
|
void stop();
|
||
|
|
||
|
protected:
|
||
|
int result;
|
||
14 years ago
|
TQString m_exec;
|
||
12 years ago
|
TDEProcess proc;
|
||
15 years ago
|
};
|
||
|
|
||
|
#endif
|