MainFrm.cpp
上传用户:szcanmei
上传日期:2007-01-02
资源大小:48k
文件大小:1k
源码类别:

菜单

开发平台:

Visual C++

  1. // A flat popup menu for controls
  2. // Copyright (c) 1999 Andy Brown <andy@mirage.dabsol.co.uk>
  3. // You may do whatever you like with this file, I just don't care.
  4. #include "stdafx.h"
  5. #include "MainFrm.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd)
  12. /***************/
  13. /* Message map */
  14. /***************/
  15. BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
  16. //{{AFX_MSG_MAP(CMainFrame)
  17. //}}AFX_MSG_MAP
  18. END_MESSAGE_MAP()
  19. /***************/
  20. /* Constructor */
  21. /***************/
  22. CMainFrame::CMainFrame()
  23. {
  24. }
  25. /**************/
  26. /* Destructor */
  27. /**************/
  28. CMainFrame::~CMainFrame()
  29. {
  30. }
  31. /**************************/
  32. /* CMainFrame diagnostics */
  33. /**************************/
  34. #ifdef _DEBUG
  35. void CMainFrame::AssertValid() const
  36. {
  37. CFrameWnd::AssertValid();
  38. }
  39. void CMainFrame::Dump(CDumpContext& dc) const
  40. {
  41. CFrameWnd::Dump(dc);
  42. }
  43. #endif //_DEBUG