MSG.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // msg.h : interface of the CMsg class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. class CMsg : public CObject
  13. {
  14. protected:
  15. DECLARE_DYNCREATE(CMsg)
  16. public:
  17. CMsg();
  18. // Attributes
  19. public:
  20. CString m_strText;
  21. BOOL m_bClose;
  22. CStringList m_msgList;
  23. // Operations
  24. public:
  25. void Init();
  26. // Implementation
  27. public:
  28. virtual ~CMsg();
  29. virtual void Serialize(CArchive& ar);   // overridden for document i/o
  30. #ifdef _DEBUG
  31. virtual void AssertValid() const;
  32. virtual void Dump(CDumpContext& dc) const;
  33. #endif
  34. };
  35. /////////////////////////////////////////////////////////////////////////////