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