/**************************************************************************** ** ** DCOP Stub Implementation created by dcopidl2cpp from basketdcopiface.kidl ** ** WARNING! All changes made in this file will be lost! ** *****************************************************************************/ #include "basketdcopiface_stub.h" #include #include BasketDcopInterface_stub::BasketDcopInterface_stub( const QCString& app, const QCString& obj ) : DCOPStub( app, obj ) { } BasketDcopInterface_stub::BasketDcopInterface_stub( DCOPClient* client, const QCString& app, const QCString& obj ) : DCOPStub( client, app, obj ) { } BasketDcopInterface_stub::BasketDcopInterface_stub( const DCOPRef& ref ) : DCOPStub( ref ) { } void BasketDcopInterface_stub::newBasket() { if ( !dcopClient() ) { setStatus( CallFailed ); return; } QByteArray data; dcopClient()->send( app(), obj(), "newBasket()", data ); setStatus( CallSucceeded ); } void BasketDcopInterface_stub::handleCommandLine() { if ( !dcopClient() ) { setStatus( CallFailed ); return; } QByteArray data, replyData; QCString replyType; if ( dcopClient()->call( app(), obj(), "handleCommandLine()", data, replyType, replyData ) ) { setStatus( CallSucceeded ); } else { callFailed(); } }