#include "rfbio.h"

RFBIo::RFBIo( QIODevice *device ) : m_device(device)
{
}

quint8 RFBIo::readByte( )
{
}

void RFBIo::writeByte( quint8 value )
{
}

quint32 RFBIo::readInt(  )
{
}

void RFBIo::writeInt( quint32 value )
{
}

quint32 RFBIo::readBytes( char *buffer, quint32 max )
{
}

quint32 RFBIo::writeBytes( const char *buffer, quint32 max )
{
}

