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

#include <QtCore/QObject>

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

#endif	// _PONG_H_