summaryrefslogtreecommitdiff
path: root/tests/test-dbus-pong/pong.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-dbus-pong/pong.h')
-rw-r--r--tests/test-dbus-pong/pong.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/test-dbus-pong/pong.h b/tests/test-dbus-pong/pong.h
new file mode 100644
index 0000000..8656186
--- /dev/null
+++ b/tests/test-dbus-pong/pong.h
@@ -0,0 +1,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_