📄 packmessg.cpp
字号:
// PackMessg.cpp: implementation of the CPackMessg class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "chat.h"
#include "PackMessg.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CPackMessg::CPackMessg()
{
Init();
}
void CPackMessg::Init()
{
m_strText = _T("");
}
/////////////////////////////////////////////////////////////////////////////
// CMsg serialization
void CPackMessg::Serialize(CArchive& ar)
{
if (ar.IsStoring())
{
ar << m_strText;
}
else
{
ar >> m_strText;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -