www.pudn.com > MyeSuperMap.rar > CheckTower.cpp


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