mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 02:42:50 +00:00
15 lines
216 B
C++
15 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
|