#ifndef CLIENTSETPIXELFORMATMESSAGE_H
#define CLIENTSETPIXELFORMATMESSAGE_H

#include "clientmessagebase.h"
#include "pixelformat.h"

class ClientSetPixelFormatMessage : public ClientMessageBase
{
public:
    ClientSetPixelFormatMessage();

    void setPixelFormat( const PixelFormat &fmt );
    void writeBytes( QIODevice *device ) const;
private:
    PixelFormat m_pixelFormat;
};

#endif // CLIENTSETPIXELFORMATMESSAGE_H

