SetSheet.cpp
上传用户:tjfeida
上传日期:2013-03-10
资源大小:1917k
文件大小:1k
源码类别:

Ftp客户端

开发平台:

Visual C++

  1. // SetSheet.cpp : implementation file
  2. //
  3. /*********************************************
  4. **该文件是属于WolfFTP工程中的。如果有什么问题
  5. **请联系
  6. **         tablejiang@21cn.com
  7. **或者访问
  8. **         http://wolfftp.51.net
  9. **以得到最新的支持。
  10. *********************************************/
  11. #include "stdafx.h"
  12. #include "QuickFTP.h"
  13. #include "SetSheet.h"
  14. #ifdef _DEBUG
  15. #define new DEBUG_NEW
  16. #undef THIS_FILE
  17. static char THIS_FILE[] = __FILE__;
  18. #endif
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CSetSheet
  21. IMPLEMENT_DYNAMIC(CSetSheet, CPropertySheet)
  22. CSetSheet::CSetSheet(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage)
  23. :CPropertySheet(nIDCaption, pParentWnd, iSelectPage)
  24. {
  25. }
  26. CSetSheet::CSetSheet(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)
  27. :CPropertySheet(pszCaption, pParentWnd, iSelectPage)
  28. {
  29. }
  30. CSetSheet::~CSetSheet()
  31. {
  32. }
  33. BEGIN_MESSAGE_MAP(CSetSheet, CPropertySheet)
  34. //{{AFX_MSG_MAP(CSetSheet)
  35. // NOTE - the ClassWizard will add and remove mapping macros here.
  36. //}}AFX_MSG_MAP
  37. END_MESSAGE_MAP()
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CSetSheet message handlers