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

Windows编程

开发平台:

Visual C++

  1. // srvrdoc.h : interface of the CServerDoc 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 "lstnsock.h"
  13. #include "clntsock.h"
  14. class CMsg;
  15. class CServerDoc : public CDocument
  16. {
  17. protected: // create from serialization only
  18. CServerDoc();
  19. DECLARE_DYNCREATE(CServerDoc)
  20. // Attributes
  21. public:
  22. CListeningSocket* m_pSocket;
  23. CStringList m_msgList;
  24. CPtrList m_connectionList;
  25. // Operations
  26. public:
  27. void UpdateClients();
  28. void ProcessPendingAccept();
  29. void ProcessPendingRead(CClientSocket* pSocket);
  30. CMsg* AssembleMsg(CClientSocket* pSocket);
  31. CMsg* ReadMsg(CClientSocket* pSocket);
  32. void SendMsg(CClientSocket* pSocket, CMsg* pMsg);
  33. void CloseSocket(CClientSocket* pSocket);
  34. void Message(LPCTSTR lpszMessage);
  35. // Overrides
  36. // ClassWizard generated virtual function overrides
  37. //{{AFX_VIRTUAL(CServerDoc)
  38. public:
  39. virtual BOOL OnNewDocument();
  40. virtual void DeleteContents();
  41. //}}AFX_VIRTUAL
  42. // Implementation
  43. public:
  44. virtual ~CServerDoc();
  45. virtual void Serialize(CArchive& ar);   // overridden for document i/o
  46. #ifdef _DEBUG
  47. virtual void AssertValid() const;
  48. virtual void Dump(CDumpContext& dc) const;
  49. #endif
  50. protected:
  51. // Generated message map functions
  52. protected:
  53. //{{AFX_MSG(CServerDoc)
  54. //}}AFX_MSG
  55. afx_msg void OnUpdateMessages(CCmdUI* pCmdUI);
  56. afx_msg void OnUpdateConnections(CCmdUI* pCmdUI);
  57. DECLARE_MESSAGE_MAP()
  58. };
  59. /////////////////////////////////////////////////////////////////////////////