// MTerm1DataView.cpp: 实现文件
|
//
|
|
#include "pch.h"
|
#include "MTerm1.h"
|
#include "MTerm1DataView.h"
|
|
|
// CMTerm1DataView
|
|
IMPLEMENT_DYNCREATE(CMTerm1DataView, CFormView)
|
|
CMTerm1DataView::CMTerm1DataView()
|
: CFormView(IDD_MTerm1DataView)
|
{
|
|
}
|
|
CMTerm1DataView::~CMTerm1DataView()
|
{
|
}
|
|
void CMTerm1DataView::DoDataExchange(CDataExchange* pDX)
|
{
|
CFormView::DoDataExchange(pDX);
|
}
|
|
BEGIN_MESSAGE_MAP(CMTerm1DataView, CFormView)
|
END_MESSAGE_MAP()
|
|
|
// CMTerm1DataView 诊断
|
|
#ifdef _DEBUG
|
void CMTerm1DataView::AssertValid() const
|
{
|
CFormView::AssertValid();
|
}
|
|
#ifndef _WIN32_WCE
|
void CMTerm1DataView::Dump(CDumpContext& dc) const
|
{
|
CFormView::Dump(dc);
|
}
|
#endif
|
#endif //_DEBUG
|
|
|
// CMTerm1DataView 消息处理程序
|