home *** CD-ROM | disk | FTP | other *** search
/ Media Share 13 / mediashare_13.zip / mediashare_13 / ZIPPED / PROGRAM / WTJ9403.ZIP / POKER / MAINFRM.H < prev    next >
C/C++ Source or Header  |  1993-10-07  |  881b  |  40 lines

  1. // mainfrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CMainFrame : public CFrameWnd
  6. {
  7. protected: // create from serialization only
  8.     CMainFrame();
  9.     DECLARE_DYNCREATE(CMainFrame)
  10.  
  11. // Attributes
  12. public:
  13.  
  14. // Operations
  15. public:
  16.  
  17.     void OnUpdateKeyIndicator(CCmdUI* pCmdUI);
  18. // Implementation
  19. public:
  20.     virtual ~CMainFrame();
  21. #ifdef _DEBUG
  22.     virtual    void AssertValid() const;
  23.     virtual    void Dump(CDumpContext& dc) const;
  24. #endif
  25.  
  26.  
  27. protected:    // control bar embedded members
  28.     CStatusBar    m_wndStatusBar;
  29.     CToolBar    m_wndToolBar;
  30.  
  31. // Generated message map functions
  32. protected:
  33.     //{{AFX_MSG(CMainFrame)
  34.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  35.     //}}AFX_MSG
  36.     DECLARE_MESSAGE_MAP()
  37. };
  38.  
  39. /////////////////////////////////////////////////////////////////////////////
  40.