kpilot/kpilot
kpilotDCOP_stub.h00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef __KPILOTDCOP_STUB__
00010 #define __KPILOTDCOP_STUB__
00011
00012 #include <dcopstub.h>
00013 #include <dcopobject.h>
00014
00015
00016 class KPilotDCOP_stub : virtual public DCOPStub
00017 {
00018 public:
00019 KPilotDCOP_stub( const QCString& app, const QCString& id );
00020 KPilotDCOP_stub( DCOPClient* client, const QCString& app, const QCString& id );
00021 explicit KPilotDCOP_stub( const DCOPRef& ref );
00022 virtual ASYNC daemonStatus( int );
00023 virtual ASYNC configure();
00024 virtual ASYNC configureWizard();
00025 virtual int kpilotStatus();
00026 protected:
00027 KPilotDCOP_stub() : DCOPStub( never_use ) {};
00028 };
00029
00030
00031 #endif
|