CMessg.cpp
上传用户:sycq158
上传日期:2008-10-22
资源大小:15361k
文件大小:1k
源码类别:

游戏

开发平台:

Visual C++

  1. #include "stdafx.h"
  2. #include "CMessg.h"
  3. #ifdef _DEBUG
  4. #undef THIS_FILE
  5. static char BASED_CODE THIS_FILE[] = __FILE__;
  6. #endif
  7. /////////////////////////////////////////////////////////////////////////////
  8. // CMsg
  9. IMPLEMENT_DYNCREATE(CMessg, CObject)
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CMsg construction/destruction
  12. CMessg::CMessg()
  13. {
  14. Init();
  15. }
  16. CMessg::~CMessg()
  17. {
  18. }
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CMsg Operations
  21. void CMessg::Init()
  22. {
  23. m_strText = _T("");
  24. }
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CMsg serialization
  27. void CMessg::Serialize(CArchive& ar)
  28. {
  29. if (ar.IsStoring())
  30. {
  31. ar << m_strText;
  32. }
  33. else
  34. {
  35. ar >> m_strText;
  36. }
  37. }
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CMsg diagnostics
  40. #ifdef _DEBUG
  41. void CMessg::AssertValid() const
  42. {
  43. CObject::AssertValid();
  44. }
  45. void CMessg::Dump(CDumpContext& dc) const
  46. {
  47. CObject::Dump(dc);
  48. }
  49. #endif //_DEBUG