blob: c062760a4a7bacfe65a9e3b5929680ab6ce01893 (
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 TQObject
{
Q_OBJECT
public slots:
void walletOpened( bool );
};
#endif
|