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

Windows编程

开发平台:

Visual C++

  1. // chatdoc.h : interface of the CChatDoc 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. #include "chatsock.h"
  13. class CChatDoc : public CDocument
  14. {
  15. protected: // create from serialization only
  16. CChatDoc();
  17. DECLARE_DYNCREATE(CChatDoc)
  18. // Attributes
  19. public:
  20. BOOL m_bAutoChat;
  21. CString m_strHandle;
  22. CChatSocket* m_pSocket;
  23. CSocketFile* m_pFile;
  24. CArchive* m_pArchiveIn;
  25. CArchive* m_pArchiveOut;
  26. // Operations
  27. public:
  28. BOOL ConnectSocket(LPCTSTR lpszHandle, LPCTSTR lpszAddress, UINT nPort);
  29. void ProcessPendingRead();
  30. void SendMsg(CString& strText);
  31. void ReceiveMsg();
  32. void DisplayMsg(LPCTSTR lpszText);
  33. // Overrides
  34. // ClassWizard generated virtual function overrides
  35. //{{AFX_VIRTUAL(CChatDoc)
  36. public:
  37. virtual BOOL OnNewDocument();
  38. virtual void DeleteContents();
  39. //}}AFX_VIRTUAL
  40. // Implementation
  41. public:
  42. virtual ~CChatDoc();
  43. virtual void Serialize(CArchive& ar);   // overridden for document i/o
  44. #ifdef _DEBUG
  45. virtual void AssertValid() const;
  46. virtual void Dump(CDumpContext& dc) const;
  47. #endif
  48. protected:
  49. // Generated message map functions
  50. protected:
  51. //{{AFX_MSG(CChatDoc)
  52. //}}AFX_MSG
  53. DECLARE_MESSAGE_MAP()
  54. };
  55. /////////////////////////////////////////////////////////////////////////////