zonegroupinfo.h

来自「天之炼狱1服务器端源文件游戏服务端不完整」· C头文件 代码 · 共 62 行

H
62
字号
//----------------------------------------------------------------------//// Filename    : ZoneGroupInfo.h// Written By  : Reiot// Description :////----------------------------------------------------------------------#ifndef __ZONE_GROUP_INFO_H__#define __ZONE_GROUP_INFO_H__// include files#include "Types.h"#include "Exception.h"//----------------------------------------------------------------------//// class ZoneGroupInfo;//// 肺弊牢 辑滚侩 粮 弊缝 沥焊 按眉捞促.//// 绢恫 粮弊缝捞 绢恫 辑滚俊 狼秦辑 贸府登绰瘤父 促烽促.////----------------------------------------------------------------------class ZoneGroupInfo {public :	// get/set zone group id	ZoneGroupID_t getZoneGroupID () const throw () { return m_ZoneGroupID; }	void setZoneGroupID ( ZoneGroupID_t zoneGroupID ) throw () { m_ZoneGroupID = zoneGroupID; }	// get/set game server's nick name	ServerID_t getServerID () const throw () { return m_ServerID; }	void setServerID ( const ServerID_t ServerID ) throw () { m_ServerID = ServerID; }	// get debug string	string toString () const throw ()	{		StringStream msg;		msg << "ZoneGroupInfo("			<< "ZoneGroupID:" << m_ZoneGroupID 			<< ",ServerID:" << m_ServerID			<< ")";		return msg.toString();	}private :	// 粮弊缝 酒捞叼	ZoneGroupID_t m_ZoneGroupID;	// 霸烙 辑滚	ServerID_t m_ServerID;};#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?