gameservergroupinfo.h

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

H
69
字号
//----------------------------------------------------------------------//// Filename    : GameServerGroupInfo.h// Written By  : Reiot// Description : 肺弊牢 辑滚俊辑 爱绊 乐绰 阿 霸烙 辑滚俊 措茄 沥焊////----------------------------------------------------------------------#ifndef __GAME_SERVER_GROUP_INFO_H__#define __GAME_SERVER_GROUP_INFO_H__// include files#include "Types.h"#include "Exception.h"#include "StringStream.h"//----------------------------------------------------------------------//// class GameServerGroupInfo;//// GAME DB狼 GameServerGroupInfo 抛捞喉俊辑 佬绢甸牢 阿 霸烙 辑滚狼 沥焊甫// 淬篮 努贰胶捞促.////----------------------------------------------------------------------class GameServerGroupInfo {public :	// get/set GameWorldID	WorldID_t getWorldID() const throw() { return m_WorldID; }	void setWorldID( WorldID_t WorldID ) throw() { m_WorldID = WorldID; }	// get/set GameServerGroupID	ServerGroupID_t getGroupID() const throw() { return m_GroupID; }	void setGroupID( ServerGroupID_t GroupID ) throw() { m_GroupID = GroupID; }	// get/set host name	string getGroupName() const throw () { return m_GroupName; }	void setGroupName( string GroupName ) throw () { m_GroupName = GroupName; }		// get debug string	string toString () const throw () 	{		StringStream msg;		msg << "GameServerGroupInfo("			<< "WorldID : " << (int)m_WorldID			<< "ServerGroupID: " << (int)m_GroupID			<< ",GroupName:" << m_GroupName			<< ")";		return msg.toString();	}private :	// WorldID	WorldID_t	m_WorldID;	// GameServerGroup ID	ServerGroupID_t m_GroupID;	// GameServerGroup Process's nick name	string m_GroupName;};#endif

⌨️ 快捷键说明

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