home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Shareware / Programare / skincraft / SkinCrafter_v1.4.12_Demo.msi / _49E29CB9A65AABBF653C1037E1AA74B6 / _FF2871511478449281994E28A362B432 < prev   
Encoding:
Text File  |  2003-04-10  |  1.7 KB  |  62 lines

  1. // ChildFrm.h : interface of the CChildFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. #if !defined(AFX_CHILDFRM_H__514D7821_D2A4_49A2_AB0C_A48E7822FB44__INCLUDED_)
  6. #define AFX_CHILDFRM_H__514D7821_D2A4_49A2_AB0C_A48E7822FB44__INCLUDED_
  7.  
  8. #if _MSC_VER > 1000
  9. #pragma once
  10. #endif // _MSC_VER > 1000
  11.  
  12. #include "ChildView.h"
  13.  
  14. class CChildFrame : public CMDIChildWnd
  15. {
  16.     DECLARE_DYNCREATE(CChildFrame)
  17. public:
  18.     CChildFrame();
  19.  
  20. // Attributes
  21. public:
  22.  
  23. // Operations
  24. public:
  25.  
  26. // Overrides
  27.     // ClassWizard generated virtual function overrides
  28.     //{{AFX_VIRTUAL(CChildFrame)
  29.     public:
  30.     virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  31.     virtual BOOL OnCmdMsg(UINT nID, int nCode, void* pExtra, AFX_CMDHANDLERINFO* pHandlerInfo);
  32.     //}}AFX_VIRTUAL
  33.  
  34. // Implementation
  35. public:
  36.     // view for the client area of the frame.
  37.     CChildView m_wndView;
  38.     virtual ~CChildFrame();
  39. #ifdef _DEBUG
  40.     virtual void AssertValid() const;
  41.     virtual void Dump(CDumpContext& dc) const;
  42. #endif
  43.  
  44. // Generated message map functions
  45. protected:
  46.     //{{AFX_MSG(CChildFrame)
  47.         // NOTE - the ClassWizard will add and remove member functions here.
  48.         //    DO NOT EDIT what you see in these blocks of generated code!
  49.     afx_msg void OnFileClose();
  50.     afx_msg void OnSetFocus(CWnd* pOldWnd);
  51.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  52.     //}}AFX_MSG
  53.     DECLARE_MESSAGE_MAP()
  54. };
  55.  
  56. /////////////////////////////////////////////////////////////////////////////
  57.  
  58. //{{AFX_INSERT_LOCATION}}
  59. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  60.  
  61. #endif // !defined(AFX_CHILDFRM_H__514D7821_D2A4_49A2_AB0C_A48E7822FB44__INCLUDED_)
  62.