-rw-r--r-- | x11/ipc/client/ocopclient.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/x11/ipc/client/ocopclient.h b/x11/ipc/client/ocopclient.h index 5300132..db04d37 100644 --- a/x11/ipc/client/ocopclient.h +++ b/x11/ipc/client/ocopclient.h | |||
@@ -32,19 +32,22 @@ public: | |||
32 | 32 | ||
33 | /** | 33 | /** |
34 | * add a channel and does connect to a signal | 34 | * add a channel and does connect to a signal |
35 | * callback is the object | 35 | * callback is the object |
36 | * slot is the SLOT() | 36 | * slot is the SLOT() |
37 | */ | 37 | */ |
38 | void addChannel( const QCString& channel ); | 38 | void addChannel( const QCString& channel ); |
39 | void delChannel( const QCString& channel ); | 39 | void delChannel( const QCString& channel ); |
40 | |||
41 | /* make it singleton? */ | ||
42 | //static OCOPClient* self(); | ||
40 | /* no direct signals due the design */ | 43 | /* no direct signals due the design */ |
41 | signals: | 44 | signals: |
42 | void called(const QCString&, const QCString&, const QByteArray ); | 45 | void called(const QCString&, const QCString&, const QByteArray& ); |
43 | private slots: | 46 | private slots: |
44 | void init(const QCString& pa); | 47 | void init(const QCString& pa); |
45 | void newData(); | 48 | void newData(); |
46 | private: | 49 | private: |
47 | OCOPPacket packet(); | 50 | OCOPPacket packet(); |
48 | void call( const OCOPPacket& ); | 51 | void call( const OCOPPacket& ); |
49 | 52 | ||
50 | QSocketNotifier* m_notify; | 53 | QSocketNotifier* m_notify; |