www.pudn.com > short.rar > dlg.cpp


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