]> icculus.org git repositories - taylor/freespace2.git/blob - include/pofviewdoc.h
added copyright header
[taylor/freespace2.git] / include / pofviewdoc.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 // PofViewDoc.h : interface of the CPofViewDoc class
10 //
11 /////////////////////////////////////////////////////////////////////////////
12
13 class CPofViewDoc : public CDocument
14 {
15 protected: // create from serialization only
16         CPofViewDoc();
17         DECLARE_DYNCREATE(CPofViewDoc)
18
19 // Attributes
20 public:
21         int m_model_num;
22
23 // Operations
24 public:
25
26 // Overrides
27         // ClassWizard generated virtual function overrides
28         //{{AFX_VIRTUAL(CPofViewDoc)
29         public:
30         virtual BOOL OnNewDocument();
31         virtual void Serialize(CArchive& ar);
32         //}}AFX_VIRTUAL
33
34 // Implementation
35 public:
36         virtual ~CPofViewDoc();
37 #ifdef _DEBUG
38         virtual void AssertValid() const;
39         virtual void Dump(CDumpContext& dc) const;
40 #endif
41
42 protected:
43
44 // Generated message map functions
45 protected:
46         //{{AFX_MSG(CPofViewDoc)
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
50         DECLARE_MESSAGE_MAP()
51 };
52
53 /////////////////////////////////////////////////////////////////////////////
54