summaryrefslogtreecommitdiffstats
path: root/kio/tests/kdcopcheck.h
blob: 5410bbec29ada15320d63732f6d71e6f0dff5ce0 (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 <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