1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
 
// GangBond2860Emulator.h : PROJECT_NAME Ó¦ÓóÌÐòµÄÖ÷Í·Îļþ
//
 
#pragma once
 
#ifndef __AFXWIN_H__
    #error "ÔÚ°üº¬´ËÎļþ֮ǰ°üº¬¡°stdafx.h¡±ÒÔÉú³É PCH Îļþ"
#endif
 
#include "resource.h"        // Ö÷·ûºÅ
#include "Model.h"
 
 
// CGangBond2860EmulatorApp: 
// ÓйشËÀàµÄʵÏÖ£¬Çë²ÎÔÄ GangBond2860Emulator.cpp
//
 
class CGangBond2860EmulatorApp : public CWinApp
{
public:
    CGangBond2860EmulatorApp();
 
 
public:
    CString m_strAppDir;
    CString m_strAppFile;
    int m_nVersionNumber;
    CString m_strVersionName;
    CModel m_model;
 
 
// ÖØÐ´
public:
    virtual BOOL InitInstance();
 
// ÊµÏÖ
 
    DECLARE_MESSAGE_MAP()
    virtual int ExitInstance();
};
 
extern CGangBond2860EmulatorApp theApp;