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.
27 lines
382 B
27 lines
382 B
#ifndef REMOTECTRLIMPL_H
|
|
#define REMOTECTRLIMPL_H
|
|
|
|
#include "remotectrl.h"
|
|
|
|
class TQSocket;
|
|
|
|
class RemoteCtrlImpl : public RemoteCtrl
|
|
{
|
|
TQ_OBJECT
|
|
|
|
public:
|
|
RemoteCtrlImpl( TQSocket * );
|
|
|
|
private slots:
|
|
void sendImage();
|
|
void sendText();
|
|
void sendPalette();
|
|
|
|
private:
|
|
void sendPacket( const TQVariant & );
|
|
|
|
TQSocket *socket;
|
|
};
|
|
|
|
#endif // REMOTECTRLIMPL_H
|