blob: 593dbba1ec9822c3439f79cb04f320c14bc72771 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#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;
TDEProcess proc;
};
#endif
|