QuakeGod
2023-05-19 418cb35b936f21415807a2bcc21b2d75934bd4d2
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// CMTerm2CommTestView.cpp: 实现文件
//
 
#include "pch.h"
#include "framework.h"
#include "MTerm2.h"
#include "MTerm2Doc.h"
 
#include "MTerm2CommTestView.h"
 
 
// CMTerm2CommTestView 对话框
 
IMPLEMENT_DYNAMIC(CMTerm2CommTestView, CFormView)
 
CMTerm2CommTestView::CMTerm2CommTestView()
    : CFormView(IDD_MTerm2CommTestView)
{
 
}
 
CMTerm2CommTestView::~CMTerm2CommTestView()
{
}
 
void CMTerm2CommTestView::DoDataExchange(CDataExchange* pDX)
{
    CFormView::DoDataExchange(pDX);
}
 
 
BEGIN_MESSAGE_MAP(CMTerm2CommTestView, CFormView)
END_MESSAGE_MAP()
 
// CMTerm2TestView 诊断
 
#ifdef _DEBUG
void CMTerm2CommTestView::AssertValid() const
{
    CFormView::AssertValid();
}
 
#ifndef _WIN32_WCE
void CMTerm2CommTestView::Dump(CDumpContext& dc) const
{
    CFormView::Dump(dc);
}
#endif
CMTerm2Doc* CMTerm2CommTestView::GetDocument() const // 非调试版本是内联的
{
    ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CMTerm2Doc)));
    return (CMTerm2Doc*)m_pDocument;
}
#endif //_DEBUG
 
 
// CMTerm2CommTestView 消息处理程序