home *** CD-ROM | disk | FTP | other *** search
/ Mastering MFC Development / MMD.ISO / labs / c10 / lab01 / baseline / childfrm.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-20  |  903 b   |  42 lines

  1. // ChildFrm.h : interface of the CChildFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CChildFrame : public CMDIChildWnd
  6. {
  7.     DECLARE_DYNCREATE(CChildFrame)
  8. public:
  9.     void OnUpdateFrameTitle(  BOOL bAddToTitle );
  10.     CString m_strCaption;
  11.     CChildFrame();
  12.  
  13. // Attributes
  14. public:
  15.  
  16. // Operations
  17. public:
  18.  
  19. // Overrides
  20.     // ClassWizard generated virtual function overrides
  21.     //{{AFX_VIRTUAL(CChildFrame)
  22.     public:
  23.     virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  24.     //}}AFX_VIRTUAL
  25.  
  26. // Implementation
  27. public:
  28.     virtual ~CChildFrame();
  29. #ifdef _DEBUG
  30.     virtual void AssertValid() const;
  31.     virtual void Dump(CDumpContext& dc) const;
  32. #endif
  33.  
  34. // Generated message map functions
  35. protected:
  36.     //{{AFX_MSG(CChildFrame)
  37.     //}}AFX_MSG
  38.     DECLARE_MESSAGE_MAP()
  39. };
  40.  
  41. /////////////////////////////////////////////////////////////////////////////
  42.