ChildFrm.h 516 B

123456789101112131415161718192021222324252627282930
  1. // ChildFrm.h : interface of the CChildFrame class
  2. //
  3. #pragma once
  4. class CChildFrame : public CMDIChildWnd
  5. {
  6. DECLARE_DYNCREATE(CChildFrame)
  7. public:
  8. CChildFrame();
  9. // Attributes
  10. public:
  11. // Operations
  12. public:
  13. // Overrides
  14. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  15. // Implementation
  16. public:
  17. virtual ~CChildFrame();
  18. #ifdef _DEBUG
  19. virtual void AssertValid() const;
  20. virtual void Dump(CDumpContext& dc) const;
  21. #endif
  22. // Generated message map functions
  23. protected:
  24. DECLARE_MESSAGE_MAP()
  25. };