ManDelSet.cpp
上传用户:quan1896
上传日期:2013-04-17
资源大小:94k
文件大小:1k
源码类别:

2D图形编程

开发平台:

Visual C++

  1. // ManDelSet.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "matcher.h"
  5. #include "ManDelSet.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CManDelSet property page
  13. IMPLEMENT_DYNCREATE(CManDelSet, CPropertyPage)
  14. CManDelSet::CManDelSet() : CPropertyPage(CManDelSet::IDD)
  15. {
  16. //{{AFX_DATA_INIT(CManDelSet)
  17. m_ManDelBase = 0;
  18. //}}AFX_DATA_INIT
  19. }
  20. CManDelSet::~CManDelSet()
  21. {
  22. }
  23. void CManDelSet::DoDataExchange(CDataExchange* pDX)
  24. {
  25. CPropertyPage::DoDataExchange(pDX);
  26. //{{AFX_DATA_MAP(CManDelSet)
  27. DDX_Radio(pDX, IDC_FMATCH_RADIO, m_ManDelBase);
  28. //}}AFX_DATA_MAP
  29. }
  30. BEGIN_MESSAGE_MAP(CManDelSet, CPropertyPage)
  31. //{{AFX_MSG_MAP(CManDelSet)
  32. //}}AFX_MSG_MAP
  33. END_MESSAGE_MAP()
  34. /////////////////////////////////////////////////////////////////////////////
  35. // CManDelSet message handlers