Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
938 B

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. childfrm.h
  5. Abstract:
  6. Author:
  7. Sivaprasad Padisetty (sivapad) 6/25/97
  8. Revision History:
  9. --*/
  10. /////////////////////////////////////////////////////////////////////////////
  11. class CChildFrame : public CMDIChildWnd
  12. {
  13. DECLARE_DYNCREATE(CChildFrame)
  14. public:
  15. CChildFrame();
  16. // Attributes
  17. public:
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CChildFrame)
  23. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  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
  36. DECLARE_MESSAGE_MAP()
  37. };
  38. /////////////////////////////////////////////////////////////////////////////