hellofrm.h
上传用户:liudazhe
上传日期:2007-01-02
资源大小:51k
文件大小:1k
源码类别:

菜单

开发平台:

Visual C++

  1. // HelloFrm.h : interface of the CHelloFrame class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1997 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. /////////////////////////////////////////////////////////////////////////////
  13. class CHelloFrame : public CMDIChildWnd
  14. {
  15. DECLARE_DYNCREATE(CHelloFrame)
  16. public:
  17. CHelloFrame();
  18. // Attributes
  19. public:
  20. // Operations
  21. public:
  22. // Overrides
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CHelloFrame)
  25. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. public:
  29. virtual ~CHelloFrame();
  30. #ifdef _DEBUG
  31. virtual void AssertValid() const;
  32. virtual void Dump(CDumpContext& dc) const;
  33. #endif
  34. // Generated message map functions
  35. protected:
  36. //{{AFX_MSG(CHelloFrame)
  37. // NOTE - the ClassWizard will add and remove member functions here.
  38. //    DO NOT EDIT what you see in these blocks of generated code!
  39. //}}AFX_MSG
  40. DECLARE_MESSAGE_MAP()
  41. };
  42. /////////////////////////////////////////////////////////////////////////////