Files
coco df489d5640 a
2026-07-03 16:05:30 +08:00

59 lines
1.4 KiB
C++

#if !defined(AFX_DELELECTRODE_H__0CC3C777_CC39_42C0_A249_AF6656FD2033__INCLUDED_)
#define AFX_DELELECTRODE_H__0CC3C777_CC39_42C0_A249_AF6656FD2033__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// DelElectrode.h : header file
//
#include <vector>
/////////////////////////////////////////////////////////////////////////////
// CDelElectrode dialog
typedef struct STDELELECTRODEINFO
{
std::vector<float> vtElectID;
STDELELECTRODEINFO()
{
vtElectID.clear();
}
}STDelElectInfo;
class CDelElectrode : public CDialog
{
// Construction
public:
CDelElectrode(CWnd* pParent = NULL); // standard constructor
void GetElectrodeIDInfo(STDelElectInfo &stDelInfo);
// Dialog Data
//{{AFX_DATA(CDelElectrode)
enum { IDD = IDD_DIALOG_DEL_ELECTRODE };
CString m_strDelElectID;
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CDelElectrode)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
bool CheckIDValidity();
// Generated message map functions
//{{AFX_MSG(CDelElectrode)
virtual BOOL OnInitDialog();
virtual void OnOK();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_DELELECTRODE_H__0CC3C777_CC39_42C0_A249_AF6656FD2033__INCLUDED_)