QuakeGod
2022-07-22 dd67df95a7303aee3bed65ffa935465f20ee8b32
提交 | 用户 | age
0ed438 1 #pragma once
Q 2
3
4 // CDialogCommTest 窗体视图
5
6 class CMTerm2CommTestView : public CFormView
7 {
8     DECLARE_DYNAMIC(CMTerm2CommTestView)
9
10 public:
11 protected:
12     CMTerm2CommTestView();           // 动态创建所使用的受保护的构造函数
13     virtual ~CMTerm2CommTestView();
14
15
16 #ifdef AFX_DESIGN_TIME
17     enum { IDD = IDD_MTerm2CommTestView };
18 #endif
19 #ifdef _DEBUG
20     virtual void AssertValid() const;
21 #ifndef _WIN32_WCE
22     virtual void Dump(CDumpContext& dc) const;
23 #endif
24     CMTerm2Doc* GetDocument() const;
25 #endif
26
27 protected:
28     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV 支持
29
30     DECLARE_MESSAGE_MAP()
31 };
32