blob: 448cdb7856dc09d106479b64da0a1eb99440f2e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef KWALLETASYNC_H
#define KWALLETASYNC_H
#include <tqobject.h>
namespace KWallet { class Wallet; }
class WalletReceiver : public QObject
{
Q_OBJECT
public slots:
void walletOpened( bool );
};
#endif
|