DelectMessage.cpp
上传用户:sdsuchuang
上传日期:2013-01-12
资源大小:2228k
文件大小:1k
源码类别:

图形图像处理

开发平台:

Visual C++

  1. // DelectMessage.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "FaceDetect.h"
  5. #include "DelectMessage.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // DelectMessage dialog
  13. DelectMessage::DelectMessage(CWnd* pParent /*=NULL*/)
  14. : CDialog(DelectMessage::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(DelectMessage)
  17. m_Name = _T("");
  18. //}}AFX_DATA_INIT
  19. }
  20. void DelectMessage::DoDataExchange(CDataExchange* pDX)
  21. {
  22. CDialog::DoDataExchange(pDX);
  23. //{{AFX_DATA_MAP(DelectMessage)
  24. DDX_Text(pDX, IDC_EDIT1, m_Name);
  25. DDV_MaxChars(pDX, m_Name, 15);
  26. //}}AFX_DATA_MAP
  27. }
  28. BEGIN_MESSAGE_MAP(DelectMessage, CDialog)
  29. //{{AFX_MSG_MAP(DelectMessage)
  30. // NOTE: the ClassWizard will add message map macros here
  31. //}}AFX_MSG_MAP
  32. END_MESSAGE_MAP()
  33. /////////////////////////////////////////////////////////////////////////////
  34. // DelectMessage message handlers