QuickFTPDoc.cpp
资源名称:FTP总集.rar [点击查看]
上传用户:tjfeida
上传日期:2013-03-10
资源大小:1917k
文件大小:2k
源码类别:
Ftp客户端
开发平台:
Visual C++
- // QuickFTPDoc.cpp : implementation of the CQuickFTPDoc class
- //
- /*********************************************
- **该文件是属于WolfFTP工程中的。如果有什么问题
- **请联系
- ** tablejiang@21cn.com
- **或者访问
- ** http://wolfftp.51.net
- **以得到最新的支持。
- *********************************************/
- #include "stdafx.h"
- #include "QuickFTP.h"
- #include "QuickFTPDoc.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CQuickFTPDoc
- IMPLEMENT_DYNCREATE(CQuickFTPDoc, CDocument)
- BEGIN_MESSAGE_MAP(CQuickFTPDoc, CDocument)
- //{{AFX_MSG_MAP(CQuickFTPDoc)
- // NOTE - the ClassWizard will add and remove mapping macros here.
- // DO NOT EDIT what you see in these blocks of generated code!
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CQuickFTPDoc construction/destruction
- CQuickFTPDoc::CQuickFTPDoc()
- {
- // TODO: add one-time construction code here
- m_pFileQueue = NULL ;
- }
- CQuickFTPDoc::~CQuickFTPDoc()
- {
- }
- BOOL CQuickFTPDoc::OnNewDocument()
- {
- if (!CDocument::OnNewDocument())
- return FALSE;
- // TODO: add reinitialization code here
- // (SDI documents will reuse this document)
- return TRUE;
- }
- /////////////////////////////////////////////////////////////////////////////
- // CQuickFTPDoc serialization
- void CQuickFTPDoc::Serialize(CArchive& ar)
- {
- if (ar.IsStoring())
- {
- // TODO: add storing code here
- }
- else
- {
- // TODO: add loading code here
- }
- }
- /////////////////////////////////////////////////////////////////////////////
- // CQuickFTPDoc diagnostics
- #ifdef _DEBUG
- void CQuickFTPDoc::AssertValid() const
- {
- CDocument::AssertValid();
- }
- void CQuickFTPDoc::Dump(CDumpContext& dc) const
- {
- CDocument::Dump(dc);
- }
- #endif //_DEBUG
- /////////////////////////////////////////////////////////////////////////////
- // CQuickFTPDoc commands