mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-25 11:22:52 +00:00
16 lines
216 B
C
16 lines
216 B
C
![]() |
#ifndef KWALLETASYNC_H
|
||
|
#define KWALLETASYNC_H
|
||
|
|
||
|
#include <QtCore/QObject>
|
||
|
|
||
|
namespace KWallet { class Wallet; }
|
||
|
|
||
|
class WalletReceiver : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public Q_SLOTS:
|
||
|
void walletOpened( bool );
|
||
|
};
|
||
|
|
||
|
#endif
|