⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cbillingpacketrequestminuspointbody.cpp

📁 天之炼狱1服务器端源文件游戏服务端不完整
💻 CPP
字号:
//////////////////////////////////////////////////////////////////////////// filename		: CBillingPacketRequestMinusPointBody.cpp//////////////////////////////////////////////////////////////////////////// include files#include "CBillingPacketRequestMinusPointBody.h"#include "SocketInputStream.h"#include "SocketOutputStream.h"CBillingPacketRequestMinusPointBody::CBillingPacketRequestMinusPointBody()	throw (){	__BEGIN_TRY	memset( this, 0, szCBillingPacketRequestMinusPointBodyInfo );	__END_CATCH}void CBillingPacketRequestMinusPointBody::read( SocketInputStream& iStream )	throw ( ProtocolException, Error ){	__BEGIN_TRY		CBillingPacketRequestMinusPointBodyInfo* pInfo = this;	iStream.read( (char*)pInfo, szCBillingPacketRequestMinusPointBodyInfo );	__END_CATCH}void CBillingPacketRequestMinusPointBody::write( SocketOutputStream& oStream )	throw ( ProtocolException, Error ){	__BEGIN_TRY	const CBillingPacketRequestMinusPointBodyInfo* pInfo = this;	oStream.write( (const char*)pInfo, szCBillingPacketRequestMinusPointBodyInfo );	__END_CATCH}string CBillingPacketRequestMinusPointBody::toString() const	throw (){	char str[128];	StringStream msg;	msg << "RequestMinusPointBody(";	memcpy( str, Login_Name, 64 ); str[64] = '\0';	msg << "Login_Name:" << str		<< ")";	return msg.toString();}

⌨️ 快捷键说明

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