DlgJobSetting.cpp
上传用户:tianheyiqi
上传日期:2010-04-16
资源大小:282k
文件大小:1k
源码类别:

外挂编程

开发平台:

Visual C++

  1. // DlgJobSetting.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "roa.h"
  5. #include "DlgJobSetting.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CDlgJobSetting
  13. IMPLEMENT_DYNAMIC(CDlgJobSetting, CPropertySheet)
  14. CDlgJobSetting::CDlgJobSetting(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage)
  15. :CPropertySheet(nIDCaption, pParentWnd, iSelectPage)
  16. {
  17. }
  18. CDlgJobSetting::CDlgJobSetting(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)
  19. :CPropertySheet(pszCaption, pParentWnd, iSelectPage)
  20. {
  21. }
  22. CDlgJobSetting::~CDlgJobSetting()
  23. {
  24. }
  25. BEGIN_MESSAGE_MAP(CDlgJobSetting, CPropertySheet)
  26. //{{AFX_MSG_MAP(CDlgJobSetting)
  27. // NOTE - the ClassWizard will add and remove mapping macros here.
  28. //}}AFX_MSG_MAP
  29. END_MESSAGE_MAP()
  30. /////////////////////////////////////////////////////////////////////////////
  31. // CDlgJobSetting message handlers