]> icculus.org git repositories - taylor/freespace2.git/blob - include/pofview.h
added copyright header
[taylor/freespace2.git] / include / pofview.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 // PofView.h : main header file for the POFVIEW application
10 //
11
12 #ifndef _POFVIEW_H
13 #define _POFVIEW_H
14
15 #ifndef __AFXWIN_H__
16         #error include 'stdafx.h' before including this file for PCH
17 #endif
18
19 #include "resource.h"       // main symbols
20
21 /////////////////////////////////////////////////////////////////////////////
22 // CPofViewApp:
23 // See PofView.cpp for the implementation of this class
24 //
25
26 extern float model_thrust;
27 extern int model_afterburner;
28
29 class CPofViewApp : public CWinApp
30 {
31 public:
32         virtual BOOL OnIdle(LONG lCount);
33         CPofViewApp();
34
35
36         int m_timer;
37
38 // Overrides
39         // ClassWizard generated virtual function overrides
40         //{{AFX_VIRTUAL(CPofViewApp)
41         public:
42         virtual BOOL InitInstance();
43         virtual int ExitInstance();
44         //}}AFX_VIRTUAL
45
46 // Implementation
47
48         //{{AFX_MSG(CPofViewApp)
49         afx_msg void OnAppAbout();
50                 // NOTE - the ClassWizard will add and remove member functions here.
51                 //    DO NOT EDIT what you see in these blocks of generated code !
52         //}}AFX_MSG
53         DECLARE_MESSAGE_MAP()
54 };
55
56
57 /////////////////////////////////////////////////////////////////////////////
58 #endif
59