summaryrefslogtreecommitdiff
path: root/tests/test-dbus-pong/pong.h
blob: 21f0082b012d167dcb44a70209ef2e0349c4393d (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_