summaryrefslogtreecommitdiffstats
path: root/kwallet/tests/kwallettest.h
diff options
context:
space:
mode:
Diffstat (limited to 'kwallet/tests/kwallettest.h')
-rw-r--r--kwallet/tests/kwallettest.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/kwallet/tests/kwallettest.h b/kwallet/tests/kwallettest.h
new file mode 100644
index 000000000..e3fe834f2
--- /dev/null
+++ b/kwallet/tests/kwallettest.h
@@ -0,0 +1,15 @@
+#ifndef KWALLETASYNC_H
+#define KWALLETASYNC_H
+
+#include <qobject.h>
+
+namespace KWallet { class Wallet; }
+
+class WalletReceiver : public QObject
+{
+ Q_OBJECT
+public slots:
+ void walletOpened( bool );
+};
+
+#endif