QuakeGod
2021-12-29 0a20f73829d9d53e060927f23c2777f10347ac65
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
#pragma once
 
 
 
// CMTerm2TestView 窗体视图
 
class CMTerm2TestView : public CFormView
{
    DECLARE_DYNCREATE(CMTerm2TestView)
 
protected:
    CMTerm2TestView();           // 动态创建所使用的受保护的构造函数
    virtual ~CMTerm2TestView();
 
public:
#ifdef AFX_DESIGN_TIME
    enum { IDD = IDD_MTerm2TestView };
#endif
#ifdef _DEBUG
    virtual void AssertValid() const;
#ifndef _WIN32_WCE
    virtual void Dump(CDumpContext& dc) const;
#endif
    CMTerm2Doc* GetDocument() const;
#endif
 
protected:
    virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV 支持
 
    DECLARE_MESSAGE_MAP()
 
};