msg.cpp
来自「一个类似QQ的聊天程序--服务器.利用WINSOCK编写,在VISUAL C++」· C++ 代码 · 共 50 行
CPP
50 行
// Msg.cpp: implementation of the CMsg class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Ts.h"
#include "Msg.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CMsg::CMsg()
{
m_strText.msg=_T("");
m_bClose=FALSE;
}
CMsg::~CMsg()
{
}
void CMsg::Serialize(CArchive& ar)
{
if(ar.IsStoring())
{
ar<<(WORD)m_bClose;
ar<<m_strText.m_ID;
ar<<m_strText.s_ID;
ar<<m_strText.msg;
}
else
{
WORD wd;
ar>>wd;
m_bClose=(BOOL)wd;
ar>>m_strText.m_ID;
ar>>m_strText.s_ID;
ar>>m_strText.msg;
}
}
IMPLEMENT_DYNAMIC(CMsg,CObject)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?