提交 | 用户 | age
|
0ed438
|
1 |
// CMTerm2CommTestView.cpp: 实现文件
|
Q |
2 |
//
|
|
3 |
|
|
4 |
#include "pch.h"
|
|
5 |
#include "framework.h"
|
|
6 |
#include "MTerm2.h"
|
|
7 |
#include "MTerm2Doc.h"
|
|
8 |
|
|
9 |
#include "MTerm2CommTestView.h"
|
|
10 |
|
|
11 |
|
|
12 |
// CMTerm2CommTestView 对话框
|
|
13 |
|
|
14 |
IMPLEMENT_DYNAMIC(CMTerm2CommTestView, CFormView)
|
|
15 |
|
|
16 |
CMTerm2CommTestView::CMTerm2CommTestView()
|
|
17 |
: CFormView(IDD_MTerm2CommTestView)
|
|
18 |
{
|
|
19 |
|
|
20 |
}
|
|
21 |
|
|
22 |
CMTerm2CommTestView::~CMTerm2CommTestView()
|
|
23 |
{
|
|
24 |
}
|
|
25 |
|
|
26 |
void CMTerm2CommTestView::DoDataExchange(CDataExchange* pDX)
|
|
27 |
{
|
|
28 |
CFormView::DoDataExchange(pDX);
|
|
29 |
}
|
|
30 |
|
|
31 |
|
|
32 |
BEGIN_MESSAGE_MAP(CMTerm2CommTestView, CFormView)
|
|
33 |
END_MESSAGE_MAP()
|
|
34 |
|
|
35 |
// CMTerm2TestView 诊断
|
|
36 |
|
|
37 |
#ifdef _DEBUG
|
|
38 |
void CMTerm2CommTestView::AssertValid() const
|
|
39 |
{
|
|
40 |
CFormView::AssertValid();
|
|
41 |
}
|
|
42 |
|
|
43 |
#ifndef _WIN32_WCE
|
|
44 |
void CMTerm2CommTestView::Dump(CDumpContext& dc) const
|
|
45 |
{
|
|
46 |
CFormView::Dump(dc);
|
|
47 |
}
|
|
48 |
#endif
|
|
49 |
CMTerm2Doc* CMTerm2CommTestView::GetDocument() const // 非调试版本是内联的
|
|
50 |
{
|
|
51 |
ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CMTerm2Doc)));
|
|
52 |
return (CMTerm2Doc*)m_pDocument;
|
|
53 |
}
|
|
54 |
#endif //_DEBUG
|
|
55 |
|
|
56 |
|
|
57 |
// CMTerm2CommTestView 消息处理程序
|