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