zoneinfo.h

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

H
57
字号
//----------------------------------------------------------------------//// Filename    : ZoneInfo.h// Written By  : Reiot// Description :////----------------------------------------------------------------------#ifndef __ZONE_INFO_H__#define __ZONE_INFO_H__// include files#include "Types.h"#include "Exception.h"//----------------------------------------------------------------------//// class ZoneInfo;//// 肺弊牢 辑滚侩 粮 沥焊 按眉捞促.//// 绢恫 粮捞 绢恫 粮 弊缝俊 加窍绰瘤父 促烽促.////----------------------------------------------------------------------class ZoneInfo {public :	// get/set zone id	ZoneID_t getZoneID () const throw () { return m_ZoneID; }	void setZoneID ( ZoneID_t zoneID ) throw () { m_ZoneID = zoneID; }	// get/set zone group id	ZoneGroupID_t getZoneGroupID () const throw () { return m_ZoneGroupID; }	void setZoneGroupID ( ZoneGroupID_t zoneGroupID ) throw () { m_ZoneGroupID = zoneGroupID; }	// get debug string	string toString () const throw ()	{		StringStream msg;		msg << "ZoneInfo(ZoneID:" << m_ZoneID << ",ZoneGroupID:" << m_ZoneGroupID << ")";		return msg.toString();	}private :	// 粮 酒捞叼	ZoneID_t m_ZoneID;	// 粮 弊缝 酒捞叼	ZoneGroupID_t m_ZoneGroupID;};#endif

⌨️ 快捷键说明

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