QuakeGod
2023-09-05 df03213660361b1c771f0a3f21b6ddaeaef7763a
提交 | 用户 | age
418cb3 1 // MTerm1DataView.cpp: 实现文件
Q 2 //
3
4 #include "pch.h"
5 #include "MTerm1.h"
6 #include "MTerm1DataView.h"
7
8
9 // CMTerm1DataView
10
11 IMPLEMENT_DYNCREATE(CMTerm1DataView, CFormView)
12
13 CMTerm1DataView::CMTerm1DataView()
14     : CFormView(IDD_MTerm1DataView)
15 {
16
17 }
18
19 CMTerm1DataView::~CMTerm1DataView()
20 {
21 }
22
23 void CMTerm1DataView::DoDataExchange(CDataExchange* pDX)
24 {
25     CFormView::DoDataExchange(pDX);
26 }
27
28 BEGIN_MESSAGE_MAP(CMTerm1DataView, CFormView)
29 END_MESSAGE_MAP()
30
31
32 // CMTerm1DataView 诊断
33
34 #ifdef _DEBUG
35 void CMTerm1DataView::AssertValid() const
36 {
37     CFormView::AssertValid();
38 }
39
40 #ifndef _WIN32_WCE
41 void CMTerm1DataView::Dump(CDumpContext& dc) const
42 {
43     CFormView::Dump(dc);
44 }
45 #endif
46 #endif //_DEBUG
47
48
49 // CMTerm1DataView 消息处理程序