#ifndef CLIENTSECURITYTYPEMESSAGE_H
#define CLIENTSECURITYTYPEMESSAGE_H
#include "clientmessagebase.h"
#include "clientglobals.h"
#include <QDebug>
class ClientSecurityTypeMessage : public ClientMessageBase
{
public:
    ClientSecurityTypeMessage();
    void writeBytes( QIODevice *device ) const;
    void setSecurityType( ClientGlobals::AuthType type );
    ClientGlobals::AuthType securityType() const;

private:
    ClientGlobals::AuthType m_type;
};
QDebug operator<<(QDebug in, ClientSecurityTypeMessage &message );
#endif // CLIENTSECURITYTYPEMESSAGE_H

