home *** CD-ROM | disk | FTP | other *** search
/ Large Pack of OldSkool DOS MOD Trackers / beaversweeper_v101.zip / src / VIEWFRM.H < prev    next >
C/C++ Source or Header  |  2003-01-06  |  647b  |  22 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. // CViewFrame
  3.  
  4. class CViewFrame : public CMDIChildWnd
  5. {
  6.   DECLARE_DYNCREATE(CViewFrame)
  7. protected:
  8.   CViewFrame();     // protected constructor used by dynamic creation
  9. // Implementation
  10. protected:
  11.   BOOL PreCreateWindow(CREATESTRUCT& cs);
  12. protected:
  13.   virtual ~CViewFrame();
  14.   virtual void OnUpdateFrameTitle(BOOL bAddToTitle);
  15.   // Generated message map functions
  16.   //{{AFX_MSG(CViewFrame)
  17.   afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  18.   afx_msg LRESULT OnIdleUpdateCmdUI(WPARAM wParam, LPARAM);
  19.   //}}AFX_MSG
  20.   DECLARE_MESSAGE_MAP()
  21. };
  22.