kde-workspace/kwalletd/tests/kwallettest.h

16 lines
216 B
C
Raw Normal View History

2014-11-15 04:16:00 +02:00
#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