iconic21logDlg.h 693 B

123456789101112131415161718192021222324252627282930313233343536
  1. // iconic21ogDlg.h : header file
  2. //
  3. #pragma once
  4. class Ciconic21ogDlg;
  5. #include "HttpSocket.h"
  6. // Ciconic21ogDlg dialog
  7. class Ciconic21ogDlg : public CDialogEx
  8. {
  9. // Construction
  10. public:
  11. Ciconic21ogDlg(CWnd* pParent = nullptr); // standard constructor
  12. // Dialog Data
  13. #ifdef AFX_DESIGN_TIME
  14. enum { IDD = IDD_webserver_DIALOG };
  15. #endif
  16. protected:
  17. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  18. // Implementation
  19. protected:
  20. HICON m_hIcon;
  21. void* m_pwebsocket;
  22. boost::shared_ptr<HttpSocket> m_phttpmsg[MSG_NUM];
  23. virtual BOOL OnInitDialog();
  24. afx_msg void OnPaint();
  25. afx_msg HCURSOR OnQueryDragIcon();
  26. DECLARE_MESSAGE_MAP()
  27. public:
  28. afx_msg void OnDestroy();
  29. };