repo.or.cz
/
personal-kdebase.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add more spacing
[personal-kdebase.git]
/
runtime
/
kwalletd
/
tests
/
kwallettest.h
blob
f6d9052bda44732bf47b900269727b005f54f2cd
1
#ifndef KWALLETASYNC_H
2
#define KWALLETASYNC_H
3
4
#include <QtCore/QObject>
5
6
namespace
KWallet
{
class
Wallet
; }
7
8
class
WalletReceiver
:
public
QObject
9
{
10
Q_OBJECT
11
public
Q_SLOTS
:
12
void
walletOpened
(
bool
);
13
};
14
15
#endif