// ScanDlg.cpp : implementation file // #include "stdafx.h" #include "daq.h" #include "ScanDlg.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // ScanDlg dialog ScanDlg::ScanDlg(CWnd* pParent /*=NULL*/) : CDialog(ScanDlg::IDD, pParent) { //{{AFX_DATA_INIT(ScanDlg) m_stop = 0.0; m_stepSize = 0.0; m_start = 0.0; m_fname = _T(""); m_constText = _T(""); m_const_val = 0.0; m_varText = _T(""); m_event = 0; //}}AFX_DATA_INIT } void ScanDlg::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); //{{AFX_DATA_MAP(ScanDlg) DDX_Text(pDX, IDC_SP_STOP, m_stop); DDX_Text(pDX, IDC_SP_STEPSIZE, m_stepSize); DDX_Text(pDX, IDC_SP_START, m_start); DDX_Text(pDX, IDC_SP_FNAME, m_fname); DDX_Text(pDX, IDC_SP_CONST_TEXT, m_constText); DDX_Text(pDX, IDC_SP_CONST_VAL, m_const_val); DDX_Text(pDX, IDC_SP_VARTEXT, m_varText); DDX_Text(pDX, IDC_SP_EVT, m_event); //}}AFX_DATA_MAP } BEGIN_MESSAGE_MAP(ScanDlg, CDialog) //{{AFX_MSG_MAP(ScanDlg) // NOTE: the ClassWizard will add message map macros here //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // ScanDlg message handlers