www.pudn.com > 6manager_server.rar > PortSetDlg.cpp
// PortSetDlg.cpp : implementation file
//
#include "stdafx.h"
#include "manager_server.h"
#include "PortSetDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CPortSetDlg dialog
CPortSetDlg::CPortSetDlg(CWnd* pParent /*=NULL*/)
: CDialog(CPortSetDlg::IDD, pParent)
{
//{{AFX_DATA_INIT(CPortSetDlg)
m_portset = 6060;
//}}AFX_DATA_INIT
}
void CPortSetDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CPortSetDlg)
DDX_Text(pDX, IDC_PORT_EDIT, m_portset);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CPortSetDlg, CDialog)
//{{AFX_MSG_MAP(CPortSetDlg)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CPortSetDlg message handlers