DeviceView.h 587 B

12345678910111213141516171819202122232425262728293031323334
  1. #pragma once
  2. // CDeviceView 窗体视图
  3. class CDeviceView : public CFormView
  4. {
  5. DECLARE_DYNCREATE(CDeviceView)
  6. protected:
  7. CDeviceView(); // 动态创建所使用的受保护的构造函数
  8. virtual ~CDeviceView();
  9. public:
  10. #ifdef AFX_DESIGN_TIME
  11. enum { IDD = DLG_DEVICEMANAGER };
  12. #endif
  13. #ifdef _DEBUG
  14. virtual void AssertValid() const;
  15. #ifndef _WIN32_WCE
  16. virtual void Dump(CDumpContext& dc) const;
  17. #endif
  18. #endif
  19. protected:
  20. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
  21. DECLARE_MESSAGE_MAP()
  22. public:
  23. virtual void OnInitialUpdate();
  24. };