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

Ftp客户端

开发平台:

Visual C++

  1. // QuickFTPDoc.h : interface of the CQuickFTPDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_QUICKFTPDOC_H__CE82186E_D946_4A72_B3F6_4F4D4C53C82A__INCLUDED_)
  5. #define AFX_QUICKFTPDOC_H__CE82186E_D946_4A72_B3F6_4F4D4C53C82A__INCLUDED_
  6. /*********************************************
  7. **该文件是属于WolfFTP工程中的。如果有什么问题
  8. **请联系
  9. **         tablejiang@21cn.com
  10. **或者访问
  11. **         http://wolfftp.51.net
  12. **以得到最新的支持。
  13. *********************************************/
  14. #if _MSC_VER > 1000
  15. #pragma once
  16. #endif // _MSC_VER > 1000
  17. #include "FtpLib.h"
  18. #include "FileQueue.h"
  19. class CQuickFTPDoc : public CDocument
  20. {
  21. protected: // create from serialization only
  22. CQuickFTPDoc();
  23. DECLARE_DYNCREATE(CQuickFTPDoc)
  24. // Attributes
  25. public:
  26. // Operations
  27. public:
  28. // Overrides
  29. // ClassWizard generated virtual function overrides
  30. //{{AFX_VIRTUAL(CQuickFTPDoc)
  31. public:
  32. virtual BOOL OnNewDocument();
  33. virtual void Serialize(CArchive& ar);
  34. //}}AFX_VIRTUAL
  35. // Implementation
  36. public:
  37. virtual ~CQuickFTPDoc();
  38. #ifdef _DEBUG
  39. virtual void AssertValid() const;
  40. virtual void Dump(CDumpContext& dc) const;
  41. #endif
  42. protected:
  43. // Generated message map functions
  44. protected:
  45. //{{AFX_MSG(CQuickFTPDoc)
  46. // NOTE - the ClassWizard will add and remove member functions here.
  47. //    DO NOT EDIT what you see in these blocks of generated code !
  48. //}}AFX_MSG
  49. DECLARE_MESSAGE_MAP()
  50. public:
  51. char m_szLocalPath[MAX_PATH] ;
  52. char m_szLocalName[MAX_PATH] ;
  53. char m_szRemotePath[MAX_PATH] ;
  54. char m_szRemoteFile[MAX_PATH] ;
  55. CFileQueue* m_pFileQueue ;
  56. };
  57. /////////////////////////////////////////////////////////////////////////////
  58. //{{AFX_INSERT_LOCATION}}
  59. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  60. #endif // !defined(AFX_QUICKFTPDOC_H__CE82186E_D946_4A72_B3F6_4F4D4C53C82A__INCLUDED_)