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 CMTerm2CommTestView : public CFormView
{
    DECLARE_DYNAMIC(CMTerm2CommTestView)
 
public:
protected:
    CMTerm2CommTestView();           // 动态创建所使用的受保护的构造函数
    virtual ~CMTerm2CommTestView();
 
 
#ifdef AFX_DESIGN_TIME
    enum { IDD = IDD_MTerm2CommTestView };
#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()
};