#include #include #include #include #include #include #include #include #include #include static TQTextStream _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[] ) { TDEAboutData aboutData( "kwalletsync", "kwalletsync", "version" ); TDECmdLineArgs::init( argc, argv, &aboutData ); TDEApplication 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: