#pragma once
|
|
|
// CDialogCommTest 窗体视图
|
|
class CMTerm2CommTestView : public CFormView
|
{
|
DECLARE_DYNAMIC(CMTerm2CommTestView)
|
|
public:
|
protected:
|
CMTerm2CommTestView(); // 动态创建所使用的受保护的构造函数
|
virtual ~CMTerm2CommTestView();
|
|
|
#ifdef AFX_DESIGN_TIME
|
enum { IDD = IDD_MTerm2CommTestView };
|
#endif
|
#ifdef _DEBUG
|
virtual void AssertValid() const;
|
#ifndef _WIN32_WCE
|
virtual void Dump(CDumpContext& dc) const;
|
#endif
|
CMTerm2Doc* GetDocument() const;
|
#endif
|
|
protected:
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
|
|
DECLARE_MESSAGE_MAP()
|
};
|
|