You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
qt3/examples/network/remotecontrol/remotectrlimpl.h

27 lines
377 B

#ifndef REMOTECTRLIMPL_H
#define REMOTECTRLIMPL_H
#include "remotectrl.h"
class QSocket;
class RemoteCtrlImpl : public RemoteCtrl
{
Q_OBJECT
public:
RemoteCtrlImpl( QSocket * );
private slots:
void sendImage();
void sendText();
void sendPalette();
private:
void sendPacket( const QVariant & );
QSocket *socket;
};
#endif // REMOTECTRLIMPL_H