面向软件工程的Visual C++网络程序开发

源代码在线查看: message.cpp

软件大小: 588 K
上传用户: my99ab1
关键词: Visual 软件工程 网络 程序开发
下载地址: 免注册下载 普通下载 VIP

相关代码

				// 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 						ar 						ar 						ar 					}
					else{
				
						ar >> Type;
						ar >> ShortMessage;
						ar >> From;
						ar >> To;
					}
				}
				
				void CMessage::Reset()
				{
					Type = 0;
					From = _T("");
					To = _T("");
					ShortMessage = _T("");
				}
							

相关资源