www.pudn.com > dataCS.rar > Msg.cpp
// Msg.cpp: implementation of the CMsg class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Msg.h"
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CMsg::CMsg()
{
m_strMsg="";
}
CMsg::~CMsg()
{
}
void CMsg::Serialize (CArchive &ar)
{
if(ar.IsStoring())
{
ar<>m_strMsg>>m_eType;
}
}