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
423 B
29 lines
423 B
#ifndef _BLA_H_
|
|
#define _BLA_H_
|
|
|
|
#include <kprocess.h>
|
|
#include <qstring.h>
|
|
#include <qobject.h>
|
|
|
|
class TestService : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
TestService(const QString &exec);
|
|
|
|
int exec();
|
|
|
|
public slots:
|
|
void newApp(const QCString &appId);
|
|
void endApp(const QCString &appId);
|
|
void appExit();
|
|
void stop();
|
|
|
|
protected:
|
|
int result;
|
|
QString m_exec;
|
|
KProcess proc;
|
|
};
|
|
|
|
#endif
|