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

📄 message.cpp

📁 此源码使用VC编写的一个聊天程序
💻 CPP
字号:
// Message.cpp: implementation of the CMessage class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"

#include "Message.h"

#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

CMessage::CMessage()
{
	Type = 0;
	From = _T("");
	To = _T("");
	ShortMessage = _T("");
}

CMessage::~CMessage()
{
}

void CMessage::Serialize(CArchive &ar)
{
	if (ar.IsStoring()){
		ar << Type;
		ar << ShortMessage;
		ar << From;
		ar << To;
	}
	else{

		ar >> Type;
		ar >> ShortMessage;
		ar >> From;
		ar >> To;
	}
}

void CMessage::Reset()
{
	Type = 0;
	From = _T("");
	To = _T("");
	ShortMessage = _T("");
}

⌨️ 快捷键说明

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