home *** CD-ROM | disk | FTP | other *** search
/ Team Palmtops 7 / Palmtops_numero07.iso / WinCE / SDKWindowsCE / HandHeldPCPro30 / sdk.exe / Jupiter SDK / data1.cab / MFC_Samples / collect / mainfrm.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-02-19  |  1.3 KB  |  53 lines

  1. // mainfrm.h : interface of the CMainFrame class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1999 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 CMainFrame : public CFrameWnd
  14. {
  15. protected: // create from serialization only
  16.     CMainFrame();
  17.     DECLARE_DYNCREATE(CMainFrame)
  18.  
  19. // Attributes
  20. public:
  21.     UINT m_nCurrentExample;
  22. #if (_WIN32_WCE > 200)
  23.     CCeCommandBar m_wndCommandBar;
  24. #endif
  25.  
  26. // Operations
  27. public:
  28.  
  29. // Overrides
  30.     void OnExample(UINT nCmdID);
  31.     void OnUpdateExampleUI(CCmdUI* pCmdUI);
  32.     // ClassWizard generate virtual function overrides
  33.     //{{AFX_VIRTUAL(CMainFrame)
  34.     //}}AFX_VIRTUAL
  35.  
  36. // Implementation
  37. public:
  38.     virtual ~CMainFrame();
  39. #ifdef _DEBUG
  40.     virtual void AssertValid() const;
  41.     virtual void Dump(CDumpContext& dc) const;
  42. #endif
  43.  
  44. // Generated message map functions
  45. protected:
  46.     //{{AFX_MSG(CMainFrame)
  47.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  48.     //}}AFX_MSG
  49.     DECLARE_MESSAGE_MAP()
  50. };
  51.  
  52. /////////////////////////////////////////////////////////////////////////////
  53.