// CMTerm1CommTestView.cpp: 实现文件 // #include "pch.h" #include "framework.h" #include "MTerm1.h" #include "MTerm1Doc.h" #include "MTerm1CommTestView.h" // CMTerm1CommTestView 对话框 IMPLEMENT_DYNAMIC(CMTerm1CommTestView, CFormView) CMTerm1CommTestView::CMTerm1CommTestView() : CFormView(IDD_MTerm1CommTestView) { } CMTerm1CommTestView::~CMTerm1CommTestView() { } void CMTerm1CommTestView::DoDataExchange(CDataExchange* pDX) { CFormView::DoDataExchange(pDX); } BEGIN_MESSAGE_MAP(CMTerm1CommTestView, CFormView) END_MESSAGE_MAP() // CMTerm1TestView 诊断 #ifdef _DEBUG void CMTerm1CommTestView::AssertValid() const { CFormView::AssertValid(); } #ifndef _WIN32_WCE void CMTerm1CommTestView::Dump(CDumpContext& dc) const { CFormView::Dump(dc); } #endif CMTerm1Doc* CMTerm1CommTestView::GetDocument() const // 非调试版本是内联的 { ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CMTerm1Doc))); return (CMTerm1Doc*)m_pDocument; } #endif //_DEBUG // CMTerm1CommTestView 消息处理程序