ChildFrm.h 968 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. // ChildFrm.h : interface of the CChildFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #ifndef CHILDFRM_H
  5. #define CHILDFRM_H
  6. class CChildFrame : public CMDIChildWnd
  7. {
  8. DECLARE_DYNCREATE(CChildFrame)
  9. public:
  10. CChildFrame();
  11. // Attributes
  12. public:
  13. // Operations
  14. public:
  15. // Overrides
  16. // ClassWizard generated virtual function overrides
  17. //{{AFX_VIRTUAL(CChildFrame)
  18. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  19. //}}AFX_VIRTUAL
  20. // Implementation
  21. public:
  22. virtual ~CChildFrame();
  23. #ifdef _DEBUG
  24. virtual void AssertValid() const;
  25. virtual void Dump(CDumpContext& dc) const;
  26. #endif
  27. // Generated message map functions
  28. protected:
  29. //{{AFX_MSG(CChildFrame)
  30. //}}AFX_MSG
  31. DECLARE_MESSAGE_MAP()
  32. };
  33. /////////////////////////////////////////////////////////////////////////////
  34. //{{AFX_INSERT_LOCATION}}
  35. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  36. #endif //CHILDFRM_H