source: trunk/examples/network/remotecontrol/remotectrlimpl.h

Last change on this file was 2, checked in by dmik, 20 years ago

Imported xplatform parts of the official release 3.3.1 from Trolltech

  • Property svn:keywords set to Id
File size: 403 bytes
Line 
1#ifndef REMOTECTRLIMPL_H
2#define REMOTECTRLIMPL_H
3
4#include "remotectrl.h"
5
6class QSocket;
7
8class RemoteCtrlImpl : public RemoteCtrl
9{
10 Q_OBJECT
11
12public:
13 RemoteCtrlImpl( QSocket * );
14
15private slots:
16 void sendImage();
17 void sendText();
18 void sendPalette();
19
20private:
21 void sendPacket( const QVariant & );
22
23 QSocket *socket;
24};
25
26#endif // REMOTECTRLIMPL_H
Note: See TracBrowser for help on using the repository browser.