kde-workspace/kwalletd/tests/kwallettest.h
2014-11-15 04:16:00 +02:00

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