// 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 消息处理程序
|