File indexing completed on 2024-05-12 15:47:07

0001 #ifndef KWALLETTEST_H
0002 #define KWALLETTEST_H
0003 
0004 #include <QObject>
0005 
0006 namespace KWallet
0007 {
0008 class Wallet;
0009 }
0010 
0011 class WalletReceiver : public QObject
0012 {
0013     Q_OBJECT
0014 public Q_SLOTS:
0015     void walletOpened(bool);
0016 };
0017 
0018 #endif // KWALLETTEST_H