xjmFtpDoc.cpp
资源名称:FTP总集.rar [点击查看]
上传用户:tjfeida
上传日期:2013-03-10
资源大小:1917k
文件大小:2k
源码类别:
Ftp客户端
开发平台:
Visual C++
- // xjmFtpDoc.cpp : implementation of the CXjmFtpDoc class
- //
- #include "stdafx.h"
- #include "xjmFtp.h"
- #include "xjmFtpDoc.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CXjmFtpDoc
- IMPLEMENT_DYNCREATE(CXjmFtpDoc, CDocument)
- BEGIN_MESSAGE_MAP(CXjmFtpDoc, CDocument)
- //{{AFX_MSG_MAP(CXjmFtpDoc)
- // 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
- ON_COMMAND(ID_FILE_SEND_MAIL, OnFileSendMail)
- ON_UPDATE_COMMAND_UI(ID_FILE_SEND_MAIL, OnUpdateFileSendMail)
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CXjmFtpDoc construction/destruction
- CXjmFtpDoc::CXjmFtpDoc()
- {
- // TODO: add one-time construction code here
- }
- CXjmFtpDoc::~CXjmFtpDoc()
- {
- }
- BOOL CXjmFtpDoc::OnNewDocument()
- {
- if (!CDocument::OnNewDocument())
- return FALSE;
- // TODO: add reinitialization code here
- // (SDI documents will reuse this document)
- return TRUE;
- }
- /////////////////////////////////////////////////////////////////////////////
- // CXjmFtpDoc serialization
- void CXjmFtpDoc::Serialize(CArchive& ar)
- {
- if (ar.IsStoring())
- {
- // TODO: add storing code here
- }
- else
- {
- // TODO: add loading code here
- }
- }
- /////////////////////////////////////////////////////////////////////////////
- // CXjmFtpDoc diagnostics
- #ifdef _DEBUG
- void CXjmFtpDoc::AssertValid() const
- {
- CDocument::AssertValid();
- }
- void CXjmFtpDoc::Dump(CDumpContext& dc) const
- {
- CDocument::Dump(dc);
- }
- #endif //_DEBUG
- /////////////////////////////////////////////////////////////////////////////
- // CXjmFtpDoc commands