blob: e3fe834f232559b095ea8e0a967e29ea67030c44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
|