OptionsTabRemote.h
上传用户:surprise9
上传日期:2007-01-04
资源大小:426k
文件大小:1k
源码类别:

Ftp客户端

开发平台:

Visual C++

  1. // OptionsTabRemote.h : header file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. // COptionsTabRemote
  5. class DLL_WAR_CLIENT_ COptionsTabRemote : public CPropertySheet
  6. {
  7. DECLARE_DYNAMIC(COptionsTabRemote)
  8. // Construction
  9. public:
  10. COptionsTabRemote(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  11. COptionsTabRemote(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  12. // Attributes
  13. public:
  14. CRemoteInterface *m_pRI;
  15. // Operations
  16. public:
  17. // Overrides
  18. // ClassWizard generated virtual function overrides
  19. //{{AFX_VIRTUAL(COptionsTabRemote)
  20. public:
  21. virtual BOOL OnInitDialog();
  22. //}}AFX_VIRTUAL
  23. // Implementation
  24. public:
  25. virtual ~COptionsTabRemote();
  26. static BOOL RunDialog(CRemoteInterface *pRI, DWORD Flags, CWarClientAPI *pAPI);
  27. // Generated message map functions
  28. protected:
  29. //{{AFX_MSG(COptionsTabRemote)
  30. // NOTE - the ClassWizard will add and remove member functions here.
  31. //}}AFX_MSG
  32. DECLARE_MESSAGE_MAP()
  33. };
  34. /////////////////////////////////////////////////////////////////////////////