#ifndef CLIENTVENCRYPTPLAINAUTHENTICATIONMESSAGE_H
#define CLIENTVENCRYPTPLAINAUTHENTICATIONMESSAGE_H
#include "clientmessagebase.h"
#include <QString>

class ClientVeNCryptPlainAuthenticationMessage : public ClientMessageBase
{

public:
    ClientVeNCryptPlainAuthenticationMessage();
    void writeBytes( QIODevice *device ) const;
    void setUserInfo( const QString &uname, const QString &passwd );

private:
    QString m_username;
    QString m_password;
};

#endif // CLIENTVENCRYPTPLAINAUTHENTICATIONMESSAGE_H

