summaryrefslogtreecommitdiffstats
path: root/kdeui/tests/kxmlguitest.h
diff options
context:
space:
mode:
Diffstat (limited to 'kdeui/tests/kxmlguitest.h')
-rw-r--r--kdeui/tests/kxmlguitest.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/kdeui/tests/kxmlguitest.h b/kdeui/tests/kxmlguitest.h
new file mode 100644
index 000000000..de651e8a9
--- /dev/null
+++ b/kdeui/tests/kxmlguitest.h
@@ -0,0 +1,19 @@
+#ifndef KXMLGUITEST_H
+#define KXMLGUITEST_H
+
+#include <kxmlguiclient.h>
+#include <qobject.h>
+
+class Client : public QObject, public KXMLGUIClient
+{
+ Q_OBJECT
+public:
+ Client() {}
+
+ void setXMLFile( const QString &f, bool merge = true ) { KXMLGUIClient::setXMLFile( f, merge ); }
+ void setInstance( KInstance *inst ) { KXMLGUIClient::setInstance( inst ); }
+
+public slots:
+ void slotSec();
+};
+#endif