blob: d5eae13a31d9223b2c8f26bb2248b09397312e01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#include <qtextstream.h>
#include <qtimer.h>
#include <kaboutdata.h>
#include <kapplication.h>
#include <kcmdlineargs.h>
#include <kdebug.h>
#include <kglobal.h>
#include <kstandarddirs.h>
#include <dcopclient.h>
#include <kwallet.h>
static QTextStream _out( stdout, IO_WriteOnly );
void openWallet()
{
_out << "About to ask for wallet sync" << endl;
KWallet::Wallet *w = KWallet::Wallet::openWallet( KWallet::Wallet::NetworkWallet(), 0, KWallet::Wallet::Synchronous );
_out << "Got sync wallet: " << (w != 0) << endl;
}
int main( int argc, char *argv[] )
{
KAboutData aboutData( "kwalletsync", "kwalletsync", "version" );
KCmdLineArgs::init( argc, argv, &aboutData );
KApplication app( "kwalletsync" );
// register with DCOP
_out << "DCOP registration returned " << app.dcopClient()->registerAs(app.name()) << endl;
openWallet();
return 0;
}
// vim: set noet ts=4 sts=4 sw=4:
|