	public:
		int result;
		int roleid;
		enum { PROTOCOL_TYPE = PROTOCOL_PLAYERKICKOUT_RE };
	public:
		PlayerKickout_Re() { type = PROTOCOL_PLAYERKICKOUT_RE; }
		PlayerKickout_Re(void*) : Protocol(PROTOCOL_PLAYERKICKOUT_RE) { }
		PlayerKickout_Re (int l_result,int l_roleid)
			 : result(l_result),roleid(l_roleid)
		{
			type = PROTOCOL_PLAYERKICKOUT_RE;
		}

		PlayerKickout_Re(const PlayerKickout_Re &rhs)
			: Protocol(rhs),result(rhs.result),roleid(rhs.roleid) { }

		GNET::Protocol *Clone() const { return new PlayerKickout_Re(*this); }

		OctetsStream& marshal(OctetsStream & os) const
		{
			os << result;
			os << roleid;
			return os;
		}

		const OctetsStream& unmarshal(const OctetsStream &os)
		{
			os >> result;
			os >> roleid;
			return os;
		}

		int PriorPolicy( ) const { return 1; }

		bool SizePolicy(size_t size) const { return size <= 32; }
