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