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