QuakeGod
2023-09-05 df03213660361b1c771f0a3f21b6ddaeaef7763a
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
#pragma once
 
 
// CDialogCommTest 窗体视图
 
class CMTerm1CommTestView : public CFormView
{
    DECLARE_DYNAMIC(CMTerm1CommTestView)
 
public:
protected:
    CMTerm1CommTestView();           // 动态创建所使用的受保护的构造函数
    virtual ~CMTerm1CommTestView();
 
 
#ifdef AFX_DESIGN_TIME
    enum { IDD = IDD_MTerm1CommTestView };
#endif
#ifdef _DEBUG
    virtual void AssertValid() const;
#ifndef _WIN32_WCE
    virtual void Dump(CDumpContext& dc) const;
#endif
    CMTerm1Doc* GetDocument() const;
#endif
 
protected:
    virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV 支持
 
    DECLARE_MESSAGE_MAP()
};