home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / advanced / chatsrvr / msg.h < prev    next >
C/C++ Source or Header  |  1998-03-26  |  998b  |  41 lines

  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.  
  13. class CMsg : public CObject
  14. {
  15. protected:
  16.     DECLARE_DYNCREATE(CMsg)
  17. public:
  18.     CMsg();
  19.  
  20. // Attributes
  21. public:
  22.     CString m_strText;
  23.     BOOL m_bClose;
  24.     CStringList m_msgList;
  25.  
  26. // Operations
  27. public:
  28.     void Init();
  29.  
  30. // Implementation
  31. public:
  32.     virtual ~CMsg();
  33.     virtual void Serialize(CArchive& ar);   // overridden for document i/o
  34. #ifdef _DEBUG
  35.     virtual void AssertValid() const;
  36.     virtual void Dump(CDumpContext& dc) const;
  37. #endif
  38. };
  39.  
  40. /////////////////////////////////////////////////////////////////////////////
  41.