]> icculus.org git repositories - taylor/freespace2.git/blob - include/childfrm.h
rendering functions mostly done; more complete shader setup
[taylor/freespace2.git] / include / childfrm.h
1 /*
2  * Copyright (C) Volition, Inc. 1999.  All rights reserved.
3  *
4  * All source code herein is the property of Volition, Inc. You may not sell 
5  * or otherwise commercially exploit the source or things you created based on
6  * the source.
7  */
8
9 // ChildFrm.h : interface of the CChildFrame class
10 //
11 /////////////////////////////////////////////////////////////////////////////
12
13 class CChildFrame : public CMDIChildWnd
14 {
15         DECLARE_DYNCREATE(CChildFrame)
16 public:
17         CChildFrame();
18
19 // Attributes
20 public:
21
22 // Operations
23 public:
24
25 // Overrides
26         // ClassWizard generated virtual function overrides
27         //{{AFX_VIRTUAL(CChildFrame)
28         protected:
29         virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
30         //}}AFX_VIRTUAL
31
32 // Implementation
33 public:
34         virtual ~CChildFrame();
35 #ifdef _DEBUG
36         virtual void AssertValid() const;
37         virtual void Dump(CDumpContext& dc) const;
38 #endif
39
40 // Generated message map functions
41 protected:
42         //{{AFX_MSG(CChildFrame)
43                 // NOTE - the ClassWizard will add and remove member functions here.
44                 //    DO NOT EDIT what you see in these blocks of generated code!
45         //}}AFX_MSG
46         DECLARE_MESSAGE_MAP()
47 };
48
49 /////////////////////////////////////////////////////////////////////////////
50