#pragma once
|
#include "CCollectionEvent.h"
|
|
|
// CLinkReportDlg 对话框
|
|
class CLinkReportDlg : public CDialogEx
|
{
|
DECLARE_DYNAMIC(CLinkReportDlg)
|
|
public:
|
CLinkReportDlg(CWnd* pParent = nullptr); // 标准构造函数
|
virtual ~CLinkReportDlg();
|
int loadCollectionEvents(const char* pszFilepath);
|
std::vector<unsigned int> parseVidList(CString& strNums);
|
void clearAllCollectionEvent();
|
|
|
private:
|
std::vector<SERVO::CCollectionEvent*> m_collectionEvents;
|
|
// 对话框数据
|
#ifdef AFX_DESIGN_TIME
|
enum { IDD = IDD_DIALOG_LINK_REPORT };
|
#endif
|
|
protected:
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
|
|
DECLARE_MESSAGE_MAP()
|
public:
|
virtual BOOL OnInitDialog();
|
afx_msg void OnListCtrlDoubleClick(NMHDR* pNMHDR, LRESULT* pResult);
|
afx_msg void OnBnClickedButtonSend();
|
afx_msg void OnDestroy();
|
};
|