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.
33 lines
599 B
33 lines
599 B
#ifndef MESSAGE_BUILDER_HPP
|
|
#define MESSAGE_BUILDER_HPP
|
|
|
|
class TcpConnection;
|
|
|
|
|
|
class MessageBuilder
|
|
{
|
|
public:
|
|
|
|
MessageBuilder( TcpConnection *connection,
|
|
const int bufferLength = 1024 );
|
|
|
|
virtual ~MessageBuilder();
|
|
|
|
bool buildMessage( const unsigned char* message,
|
|
const int length ) ;
|
|
|
|
|
|
private:
|
|
|
|
MessageBuilder(const MessageBuilder&);
|
|
MessageBuilder& operator=(const MessageBuilder&);
|
|
|
|
|
|
TcpConnection *m_connection;
|
|
unsigned char *m_buffer;
|
|
int m_bufferLength;
|
|
int m_bufferUsed;
|
|
};
|
|
|
|
#endif // MESSAGE_BUILDER_HPP
|