mymenuDoc.cpp
上传用户:aphuaqiang
上传日期:2007-01-02
资源大小:62k
文件大小:2k
源码类别:

菜单

开发平台:

Visual C++

  1. // mymenuDoc.cpp : implementation of the CMymenuDoc class
  2. //
  3. #include "stdafx.h"
  4. #include "mymenu.h"
  5. #include "mymenuDoc.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. #include "MainFrm.h"
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CMymenuDoc
  14. IMPLEMENT_DYNCREATE(CMymenuDoc, CDocument)
  15. BEGIN_MESSAGE_MAP(CMymenuDoc, CDocument)
  16. //{{AFX_MSG_MAP(CMymenuDoc)
  17. // NOTE - the ClassWizard will add and remove mapping macros here.
  18. //    DO NOT EDIT what you see in these blocks of generated code!
  19. //}}AFX_MSG_MAP
  20. END_MESSAGE_MAP()
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CMymenuDoc construction/destruction
  23. CMymenuDoc::CMymenuDoc()
  24. {
  25. }
  26. CMymenuDoc::~CMymenuDoc()
  27. {
  28. }
  29. BOOL CMymenuDoc::OnNewDocument()
  30. {
  31. if (!CDocument::OnNewDocument())return FALSE;
  32. return TRUE;
  33. }
  34. /////////////////////////////////////////////////////////////////////////////
  35. // CMymenuDoc serialization
  36. void CMymenuDoc::Serialize(CArchive& ar)
  37. {
  38. if (ar.IsStoring())
  39. {
  40. // TODO: add storing code here
  41. }
  42. else
  43. {
  44. // TODO: add loading code here
  45. }
  46. }
  47. /////////////////////////////////////////////////////////////////////////////
  48. // CMymenuDoc diagnostics
  49. #ifdef _DEBUG
  50. void CMymenuDoc::AssertValid() const
  51. {
  52. CDocument::AssertValid();
  53. }
  54. void CMymenuDoc::Dump(CDumpContext& dc) const
  55. {
  56. CDocument::Dump(dc);
  57. }
  58. #endif //_DEBUG
  59. /////////////////////////////////////////////////////////////////////////////
  60. // CMymenuDoc commands