diff options
author | Timothy Pearson <[email protected]> | 2013-11-24 02:26:53 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-11-24 02:26:53 -0600 |
commit | 8dd45350dba5c170e64ebef33773ed88795d42c3 (patch) | |
tree | 09bbbdc785abbb3e84225f41508aff631696cde0 /krfb/libvncserver/main.h | |
parent | a59a189a8b8ac84741975d749c6f82f3acca5362 (diff) | |
download | tdenetwork-8dd45350dba5c170e64ebef33773ed88795d42c3.tar.gz tdenetwork-8dd45350dba5c170e64ebef33773ed88795d42c3.zip |
Fix improper thread support in krfb
This relates to bug 1583
Diffstat (limited to 'krfb/libvncserver/main.h')
-rw-r--r-- | krfb/libvncserver/main.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/krfb/libvncserver/main.h b/krfb/libvncserver/main.h index f662a212..ad6aec5f 100644 --- a/krfb/libvncserver/main.h +++ b/krfb/libvncserver/main.h @@ -40,4 +40,19 @@ class OnHoldClientHandlerObject : public TQObject rfbClientPtr d; }; +class ClientOutputHandlerObject : public TQObject +{ + Q_OBJECT + + public: + ClientOutputHandlerObject(); + ~ClientOutputHandlerObject(); + + public slots: + void run(); + + public: + rfbClientPtr d; +}; + #endif // _MAIN_H
\ No newline at end of file |