diff options
author | Timothy Pearson <[email protected]> | 2015-01-10 20:56:37 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2015-01-10 20:56:37 -0600 |
commit | 0ca63a7ab62867cafdede1179aa4809f26ccdb64 (patch) | |
tree | 118f66a4fef0860372c30095977b9cc6c5be5e50 | |
parent | 366c7e7c2122cc4271a2dd65d270ac4175edd5e4 (diff) | |
download | libtdevnc-0ca63a7ab62867cafdede1179aa4809f26ccdb64.tar.gz libtdevnc-0ca63a7ab62867cafdede1179aa4809f26ccdb64.zip |
Add missing files from previous commit
l--------- | libvncserver/main.cc | 1 | ||||
-rw-r--r-- | libvncserver/main.h | 60 |
2 files changed, 61 insertions, 0 deletions
diff --git a/libvncserver/main.cc b/libvncserver/main.cc new file mode 120000 index 0000000..8a03e94 --- /dev/null +++ b/libvncserver/main.cc @@ -0,0 +1 @@ +main.c
\ No newline at end of file diff --git a/libvncserver/main.h b/libvncserver/main.h new file mode 100644 index 0000000..a02a476 --- /dev/null +++ b/libvncserver/main.h @@ -0,0 +1,60 @@ +/* + * Copyright (C) 2015 Timothy Pearson <[email protected]>. + * LibVNCServer (C) 2001 Johannes E. Schindelin <[email protected]> + * Original OSXvnc (C) 2001 Dan McGuirk <[email protected]>. + * Original Xvnc (C) 1999 AT&T Laboratories Cambridge. + * All Rights Reserved. + * + * see GPL (latest version) for full details + */ + +#ifndef _MAIN_H +#define _MAIN_H + +class ControlPipeHandlerObject : public TQObject +{ + Q_OBJECT + + public: + ControlPipeHandlerObject(); + ~ControlPipeHandlerObject(); + + public slots: + void run(); + + public: + rfbScreenInfoPtr d; +}; + +class OnHoldClientHandlerObject : public TQObject +{ + Q_OBJECT + + public: + OnHoldClientHandlerObject(); + ~OnHoldClientHandlerObject(); + + public slots: + void run(); + + public: + rfbClientPtr d; +}; + +class ClientOutputHandlerObject : public TQObject +{ + Q_OBJECT + + public: + ClientOutputHandlerObject(); + ~ClientOutputHandlerObject(); + + public slots: + void run(); + + public: + rfbClientPtr d; +}; + +#endif // _MAIN_H + |