summaryrefslogtreecommitdiffstats
path: root/krfb/libvncserver/main.h
diff options
context:
space:
mode:
Diffstat (limited to 'krfb/libvncserver/main.h')
-rw-r--r--krfb/libvncserver/main.h58
1 files changed, 0 insertions, 58 deletions
diff --git a/krfb/libvncserver/main.h b/krfb/libvncserver/main.h
deleted file mode 100644
index f443db0b..00000000
--- a/krfb/libvncserver/main.h
+++ /dev/null
@@ -1,58 +0,0 @@
-/*
- * 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