www.pudn.com > smsinterface.rar > ReadSMDlg.cpp


// ReadSMDlg.cpp : implementation file 
// 
 
#include "stdafx.h" 
#include "smsinterface.h" 
#include "ReadSMDlg.h" 
 
#ifdef _DEBUG 
#define new DEBUG_NEW 
#undef THIS_FILE 
static char THIS_FILE[] = __FILE__; 
#endif 
 
///////////////////////////////////////////////////////////////////////////// 
// CReadSMDlg dialog 
 
 
CReadSMDlg::CReadSMDlg(CWnd* pParent /*=NULL*/) 
	: CDialog(CReadSMDlg::IDD, pParent) 
{ 
	//{{AFX_DATA_INIT(CReadSMDlg) 
	m_smphone = _T(""); 
	m_smtext = _T(""); 
	m_smtime = _T(""); 
	m_smtype = _T(""); 
	//}}AFX_DATA_INIT 
} 
 
 
void CReadSMDlg::DoDataExchange(CDataExchange* pDX) 
{ 
	CDialog::DoDataExchange(pDX); 
	//{{AFX_DATA_MAP(CReadSMDlg) 
	DDX_Text(pDX, IDC_STATIC_SM_PHONE, m_smphone); 
	DDX_Text(pDX, IDC_STATIC_SM_TEXT, m_smtext); 
	DDX_Text(pDX, IDC_STATIC_SM_TIME, m_smtime); 
	DDX_Text(pDX, IDC_STATIC_SM_TYPE, m_smtype); 
	//}}AFX_DATA_MAP 
} 
 
 
BEGIN_MESSAGE_MAP(CReadSMDlg, CDialog) 
	//{{AFX_MSG_MAP(CReadSMDlg) 
		// NOTE: the ClassWizard will add message map macros here 
	//}}AFX_MSG_MAP 
END_MESSAGE_MAP() 
 
///////////////////////////////////////////////////////////////////////////// 
// CReadSMDlg message handlers