www.pudn.com > modelmagic3d.zip > ChildFrm.h, change:1999-03-31,size:1656b


///////////////////////////////////////////////////////////////////////////// 
// ChildFrm.h : Header file; interface of the CChildFrame class 
// 
// ModelMagic 3D and 'glOOP' (OpenGL Object Oriented Programming library) 
// Copyright (c) Craig Fahrnbach 1997, 1999 
// 
// OpenGL is a registered trademark of Silicon Graphics 
// 
// 
// This program is provided for educational and personal use only and 
// is provided without guarantee or warrantee expressed or implied. 
// 
// Commercial use is strickly prohibited without written permission 
// from ImageWare Development. 
// 
///////////////////////////////////////////////////////////////////////////// 
 
 
///////////////////////////////////////////////////////////////////////////// 
// CChildFrame window 
 
class CChildFrame : public CMDIChildWnd 
{ 
	DECLARE_DYNCREATE(CChildFrame) 
public: 
	BOOL m_bWndInitialized; 
	CChildFrame(); 
 
// Attributes 
public: 
 
// Operations 
public: 
 
// Overrides 
	// ClassWizard generated virtual function overrides 
	//{{AFX_VIRTUAL(CChildFrame) 
	public: 
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs); 
	virtual void ActivateFrame(int nCmdShow = -1); 
	//}}AFX_VIRTUAL 
 
// Implementation 
public: 
	virtual ~CChildFrame(); 
#ifdef _DEBUG 
	virtual void AssertValid() const; 
	virtual void Dump(CDumpContext& dc) const; 
#endif 
 
// Generated message map functions 
protected: 
	//{{AFX_MSG(CChildFrame) 
	afx_msg void OnPaletteChanged(CWnd* pFocusWnd); 
	afx_msg BOOL OnQueryNewPalette(); 
	afx_msg void OnDestroy(); 
	//}}AFX_MSG 
	DECLARE_MESSAGE_MAP() 
}; 
 
/////////////////////////////////////////////////////////////////////////////