123456789101112131415161718192021222324252627282930313233343536 |
- // iconic21ogDlg.h : header file
- //
- #pragma once
- class Ciconic21ogDlg;
- #include "HttpSocket.h"
- // Ciconic21ogDlg dialog
- class Ciconic21ogDlg : public CDialogEx
- {
- // Construction
- public:
- Ciconic21ogDlg(CWnd* pParent = nullptr); // standard constructor
- // Dialog Data
- #ifdef AFX_DESIGN_TIME
- enum { IDD = IDD_webserver_DIALOG };
- #endif
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- // Implementation
- protected:
- HICON m_hIcon;
- void* m_pwebsocket;
- boost::shared_ptr<HttpSocket> m_phttpmsg[MSG_NUM];
- virtual BOOL OnInitDialog();
- afx_msg void OnPaint();
- afx_msg HCURSOR OnQueryDragIcon();
- DECLARE_MESSAGE_MAP()
- public:
- afx_msg void OnDestroy();
- };
|