WndDialog.cpp
资源名称:视频会议系统.rar [点击查看]
上传用户:popouu88
上传日期:2013-02-11
资源大小:2894k
文件大小:1k
源码类别:
IP电话/视频会议
开发平台:
Visual C++
- // WndDialog.cpp : implementation file
- //
- #include "stdafx.h"
- #include "wb.h"
- #include "WndDialog.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CWndDialog dialog
- CWndDialog::CWndDialog(int id , CWnd* pParent /*=NULL*/)
- : CDialog(id , pParent)
- {
- //{{AFX_DATA_INIT(CWndDialog)
- m_check = FALSE;
- //}}AFX_DATA_INIT
- }
- void CWndDialog::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CWndDialog)
- DDX_Check(pDX, ID_CHECK, m_check);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(CWndDialog, CDialog)
- //{{AFX_MSG_MAP(CWndDialog)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CWndDialog message handlers