summaryrefslogtreecommitdiff
path: root/tests/test-dbus-pong/pong.h
blob: 3e81aa05892e897c021762e24208820368c747f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _PONG_H_
#define _PONG_H_

#include <QtCore/QObject>

class Pong: public QObject
{
    Q_OBJECT
public slots:
    Q_SCRIPTABLE QString ping(const QString &arg);
    Q_SCRIPTABLE unsigned int quit();
    Q_SCRIPTABLE unsigned int timeout();
};

#endif	// _PONG_H_