clreconnectlogin.cpp
来自「dk1游戏的原代码文件,完整.编译系统redhat7.3,mysql 3.23 」· C++ 代码 · 共 50 行
CPP
50 行
//////////////////////////////////////////////////////////////////////////////// Filename : CLReconnectLogin.cpp // Written By : reiot@ewestsoft.com// Description : //////////////////////////////////////////////////////////////////////////////#include "CLReconnectLogin.h"void CLReconnectLogin::read (SocketInputStream & iStream) throw (ProtocolException , Error){ __BEGIN_TRY // read authentication key iStream.read(m_Key); __END_CATCH} void CLReconnectLogin::write (SocketOutputStream & oStream) const throw (ProtocolException , Error){ __BEGIN_TRY // write authentication key oStream.write(m_Key); __END_CATCH}void CLReconnectLogin::execute (Player* pPlayer) throw (ProtocolException , Error){ __BEGIN_TRY CLReconnectLoginHandler::execute(this , pPlayer); __END_CATCH}string CLReconnectLogin::toString () const throw (){ StringStream msg; msg << "CLReconnectLogin(" << "KEY:" << m_Key << ")" ; return msg.toString();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?