Umasoft
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Groups Pages
mfcSimple.h
1 // mfcSimple.h : main header file for the mfcSimple application
2 //
3 // Copyright (c) 2001 Virtual Terrain Project
4 // Free for all uses, see license.txt for details.
5 //
6 
7 #if !defined(_SIMPLE_H_INCLUDED_)
8 #define _SIMPLE_H_INCLUDED_
9 
10 #if _MSC_VER > 1000
11 #pragma once
12 #endif // _MSC_VER > 1000
13 
14 #ifndef __AFXWIN_H__
15  #error include 'stdafx.h' before including this file for PCH
16 #endif
17 
18 #include "resource.h" // main symbols
19 
21 // CSimpleApp:
22 // See mfcSimple.cpp for the implementation of this class
23 //
24 
25 class CSimpleApp : public CWinApp
26 {
27 public:
28  CSimpleApp();
29 
30 // Overrides
31  // ClassWizard generated virtual function overrides
32  //{{AFX_VIRTUAL(CSimpleApp)
33  public:
34  virtual BOOL InitInstance();
35  //}}AFX_VIRTUAL
36 
37 // Implementation
38  //{{AFX_MSG(CSimpleApp)
39  afx_msg void OnAppAbout();
40  // NOTE - the ClassWizard will add and remove member functions here.
41  // DO NOT EDIT what you see in these blocks of generated code !
42  //}}AFX_MSG
43  DECLARE_MESSAGE_MAP()
44 };
45 
46 
48 
49 //{{AFX_INSERT_LOCATION}}
50 // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
51 
52 #endif // !defined(_SIMPLE_H_INCLUDED_)