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