ChildFrm.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. // ChildFrm.h : interface of the CChildFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_CHILDFRM_H__D9EB614C_C620_4CB7_A6DB_A3E9AD4D89B6__INCLUDED_)
  5. #define AFX_CHILDFRM_H__D9EB614C_C620_4CB7_A6DB_A3E9AD4D89B6__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CChildFrame : public CMDIChildWnd
  10. {
  11. DECLARE_DYNCREATE(CChildFrame)
  12. public:
  13. CChildFrame();
  14. // Attributes
  15. public:
  16. // Operations
  17. public:
  18. // Overrides
  19. // ClassWizard generated virtual function overrides
  20. //{{AFX_VIRTUAL(CChildFrame)
  21. public:
  22. virtual void ActivateFrame(int nCmdShow = -1);
  23. protected:
  24. //}}AFX_VIRTUAL
  25. // Implementation
  26. public:
  27. virtual ~CChildFrame();
  28. #ifdef _DEBUG
  29. virtual void AssertValid() const;
  30. virtual void Dump(CDumpContext& dc) const;
  31. #endif
  32. // Generated message map functions
  33. protected:
  34. //{{AFX_MSG(CChildFrame)
  35. afx_msg void OnClose();
  36. afx_msg void OnShowWindow(BOOL bShow, UINT nStatus);
  37. //}}AFX_MSG
  38. DECLARE_MESSAGE_MAP()
  39. };
  40. /////////////////////////////////////////////////////////////////////////////
  41. //{{AFX_INSERT_LOCATION}}
  42. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  43. #endif // !defined(AFX_CHILDFRM_H__D9EB614C_C620_4CB7_A6DB_A3E9AD4D89B6__INCLUDED_)