You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
640 B
32 lines
640 B
|
|
IMPLEMENT_DYNAMIC(CPropertiesDlg, CDialog)
|
|
CPropertiesDlg::CPropertiesDlg(CPtcMsgSimControlModule *pcmPtcMsg,
|
|
CWnd *pParent /*=NULL*/) :
|
|
CDialog(CPropertiesDlg::IDD, pParent),
|
|
m_pspRouter(pcmPtcMsg),
|
|
m_pspScm(pcmPtcMsg)
|
|
{
|
|
m_pcmPtcMsg = pcmPtcMsg;
|
|
}
|
|
|
|
CPropertiesDlg::~CPropertiesDlg()
|
|
{
|
|
}
|
|
|
|
void CPropertiesDlg::DoDataExchange(CDataExchange *pDX)
|
|
{
|
|
CDialog::DoDataExchange(pDX);
|
|
}
|
|
|
|
CFooBar::CFooBar(CWnd *pParent /*=NULL*/)
|
|
: CDialog(CFooBar::IDD, pParent),
|
|
m_parent(pParent)
|
|
{
|
|
//{{AFX_DATA_INIT(CRouterBrowser)
|
|
//}}AFX_DATA_INIT
|
|
|
|
m_nFoo = 0;
|
|
m_nBar = 0;
|
|
}
|
|
|