blob: 9a76e624615e2573febad81a40f367c556b8221f (
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;
KProcess proc;
};
#endif
|