summaryrefslogtreecommitdiffstats
path: root/examples/network/remotecontrol/remotectrlimpl.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/network/remotecontrol/remotectrlimpl.h')
-rw-r--r--examples/network/remotecontrol/remotectrlimpl.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/examples/network/remotecontrol/remotectrlimpl.h b/examples/network/remotecontrol/remotectrlimpl.h
new file mode 100644
index 00000000..a14d1be7
--- /dev/null
+++ b/examples/network/remotecontrol/remotectrlimpl.h
@@ -0,0 +1,26 @@
+#ifndef REMOTECTRLIMPL_H
+#define REMOTECTRLIMPL_H
+
+#include "remotectrl.h"
+
+class TQSocket;
+
+class RemoteCtrlImpl : public RemoteCtrl
+{
+ Q_OBJECT
+
+public:
+ RemoteCtrlImpl( TQSocket * );
+
+private slots:
+ void sendImage();
+ void sendText();
+ void sendPalette();
+
+private:
+ void sendPacket( const TQVariant & );
+
+ TQSocket *socket;
+};
+
+#endif // REMOTECTRLIMPL_H