blob: c3572d9292c225a80e5eabe93714e249043bc2f3 (
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 QObject
{
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
|