WndDialog.cpp
上传用户:popouu88
上传日期:2013-02-11
资源大小:2894k
文件大小:1k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. // WndDialog.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "wb.h"
  5. #include "WndDialog.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CWndDialog dialog
  13. CWndDialog::CWndDialog(int id , CWnd* pParent /*=NULL*/)
  14. : CDialog(id , pParent)
  15. {
  16. //{{AFX_DATA_INIT(CWndDialog)
  17. m_check = FALSE;
  18. //}}AFX_DATA_INIT
  19. }
  20. void CWndDialog::DoDataExchange(CDataExchange* pDX)
  21. {
  22. CDialog::DoDataExchange(pDX);
  23. //{{AFX_DATA_MAP(CWndDialog)
  24. DDX_Check(pDX, ID_CHECK, m_check);
  25. //}}AFX_DATA_MAP
  26. }
  27. BEGIN_MESSAGE_MAP(CWndDialog, CDialog)
  28. //{{AFX_MSG_MAP(CWndDialog)
  29. //}}AFX_MSG_MAP
  30. END_MESSAGE_MAP()
  31. /////////////////////////////////////////////////////////////////////////////
  32. // CWndDialog message handlers