www.pudn.com > PressMonitor_q.zip > DlgAxisTypeSelect.cpp


// DlgAxisTypeSelect.cpp : implementation file 
// 
 
#include "stdafx.h" 
#include "monitor.h" 
#include "DlgAxisTypeSelect.h" 
 
#ifdef _DEBUG 
#define new DEBUG_NEW 
#undef THIS_FILE 
static char THIS_FILE[] = __FILE__; 
#endif 
 
///////////////////////////////////////////////////////////////////////////// 
// CDlgAxisTypeSelect dialog 
 
 
CDlgAxisTypeSelect::CDlgAxisTypeSelect(CWnd* pParent /*=NULL*/) 
	: CDialog(CDlgAxisTypeSelect::IDD, pParent) 
{ 
	//{{AFX_DATA_INIT(CDlgAxisTypeSelect) 
	m_strAxisType = _T("RD2"); 
	//}}AFX_DATA_INIT 
} 
 
 
void CDlgAxisTypeSelect::DoDataExchange(CDataExchange* pDX) 
{ 
	CDialog::DoDataExchange(pDX); 
	//{{AFX_DATA_MAP(CDlgAxisTypeSelect) 
	DDX_Text(pDX, IDC_AXIS_TYPE, m_strAxisType); 
	//}}AFX_DATA_MAP 
} 
 
 
BEGIN_MESSAGE_MAP(CDlgAxisTypeSelect, CDialog) 
	//{{AFX_MSG_MAP(CDlgAxisTypeSelect) 
		// NOTE: the ClassWizard will add message map macros here 
	//}}AFX_MSG_MAP 
END_MESSAGE_MAP() 
 
///////////////////////////////////////////////////////////////////////////// 
// CDlgAxisTypeSelect message handlers