ServerDoc.cpp
上传用户:guangzhiyw
上传日期:2007-01-09
资源大小:495k
文件大小:2k
源码类别:

ICQ/即时通讯

开发平台:

Visual C++

  1. // ServerDoc.cpp : implementation of the CServerDoc class
  2. //
  3. #include "stdafx.h"
  4. #include "Server.h"
  5. #include "ServerDoc.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CServerDoc
  13. IMPLEMENT_DYNCREATE(CServerDoc, CDocument)
  14. BEGIN_MESSAGE_MAP(CServerDoc, CDocument)
  15. //{{AFX_MSG_MAP(CServerDoc)
  16. // NOTE - the ClassWizard will add and remove mapping macros here.
  17. //    DO NOT EDIT what you see in these blocks of generated code!
  18. //}}AFX_MSG_MAP
  19. END_MESSAGE_MAP()
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CServerDoc construction/destruction
  22. CServerDoc::CServerDoc()
  23. {
  24. // TODO: add one-time construction code here
  25. }
  26. CServerDoc::~CServerDoc()
  27. {
  28. }
  29. BOOL CServerDoc::OnNewDocument()
  30. {
  31. if (!CDocument::OnNewDocument())
  32. return FALSE;
  33. ((CEditView*)m_viewList.GetHead())->SetWindowText(NULL);
  34. // TODO: add reinitialization code here
  35. // (SDI documents will reuse this document)
  36. return TRUE;
  37. }
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CServerDoc serialization
  40. void CServerDoc::Serialize(CArchive& ar)
  41. {
  42. // CEditView contains an edit control which handles all serialization
  43. ((CEditView*)m_viewList.GetHead())->SerializeRaw(ar);
  44. }
  45. /////////////////////////////////////////////////////////////////////////////
  46. // CServerDoc diagnostics
  47. #ifdef _DEBUG
  48. void CServerDoc::AssertValid() const
  49. {
  50. CDocument::AssertValid();
  51. }
  52. void CServerDoc::Dump(CDumpContext& dc) const
  53. {
  54. CDocument::Dump(dc);
  55. }
  56. #endif //_DEBUG
  57. /////////////////////////////////////////////////////////////////////////////
  58. // CServerDoc commands