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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
/****************************************************************************
**
** DCOP Stub Implementation created by dcopidl2cpp from basketdcopiface.kidl
**
** WARNING! All changes made in this file will be lost!
**
*****************************************************************************/
#include "basketdcopiface_stub.h"
#include <dcopclient.h>
#include <kdatastream.h>
BasketDcopInterface_stub::BasketDcopInterface_stub( const TQCString& app, const TQCString& obj )
: DCOPStub( app, obj )
{
}
BasketDcopInterface_stub::BasketDcopInterface_stub( DCOPClient* client, const TQCString& app, const TQCString& obj )
: DCOPStub( client, app, obj )
{
}
BasketDcopInterface_stub::BasketDcopInterface_stub( const DCOPRef& ref )
: DCOPStub( ref )
{
}
void BasketDcopInterface_stub::newBasket()
{
if ( !dcopClient() ) {
settqStatus( CallFailed );
return;
}
TQByteArray data;
dcopClient()->send( app(), obj(), "newBasket()", data );
settqStatus( CallSucceeded );
}
void BasketDcopInterface_stub::handleCommandLine()
{
if ( !dcopClient() ) {
settqStatus( CallFailed );
return;
}
TQByteArray data, replyData;
TQCString replyType;
if ( dcopClient()->call( app(), obj(), "handleCommandLine()", data, replyType, replyData ) ) {
settqStatus( CallSucceeded );
} else {
callFailed();
}
}
|