CFormViewBrand.cpp 721 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. // CFormViewBrand.cpp: 实现文件
  2. //
  3. #include "pch.h"
  4. #include "CTSManager.h"
  5. #include "CFormViewBrand.h"
  6. // CFormViewBrand
  7. IMPLEMENT_DYNCREATE(CFormViewBrand, CFormView)
  8. CFormViewBrand::CFormViewBrand()
  9. : CFormView(IDD_FORMVIEW_BRAND)
  10. {
  11. }
  12. CFormViewBrand::~CFormViewBrand()
  13. {
  14. }
  15. void CFormViewBrand::DoDataExchange(CDataExchange* pDX)
  16. {
  17. CFormView::DoDataExchange(pDX);
  18. }
  19. BEGIN_MESSAGE_MAP(CFormViewBrand, CFormView)
  20. END_MESSAGE_MAP()
  21. // CFormViewBrand 诊断
  22. #ifdef _DEBUG
  23. void CFormViewBrand::AssertValid() const
  24. {
  25. CFormView::AssertValid();
  26. }
  27. #ifndef _WIN32_WCE
  28. void CFormViewBrand::Dump(CDumpContext& dc) const
  29. {
  30. CFormView::Dump(dc);
  31. }
  32. #endif
  33. #endif //_DEBUG
  34. // CFormViewBrand 消息处理程序