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

Ftp客户端

开发平台:

Visual C++

  1. // xjmFtpDoc.cpp : implementation of the CXjmFtpDoc class
  2. //
  3. #include "stdafx.h"
  4. #include "xjmFtp.h"
  5. #include "xjmFtpDoc.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CXjmFtpDoc
  13. IMPLEMENT_DYNCREATE(CXjmFtpDoc, CDocument)
  14. BEGIN_MESSAGE_MAP(CXjmFtpDoc, CDocument)
  15. //{{AFX_MSG_MAP(CXjmFtpDoc)
  16. // NOTE - the ClassWizard will add and remove mapping macros here.
  17. //    DO NOT EDIT what you see in these blocks of generated code!
  18. //}}AFX_MSG_MAP
  19. ON_COMMAND(ID_FILE_SEND_MAIL, OnFileSendMail)
  20. ON_UPDATE_COMMAND_UI(ID_FILE_SEND_MAIL, OnUpdateFileSendMail)
  21. END_MESSAGE_MAP()
  22. /////////////////////////////////////////////////////////////////////////////
  23. // CXjmFtpDoc construction/destruction
  24. CXjmFtpDoc::CXjmFtpDoc()
  25. {
  26. // TODO: add one-time construction code here
  27. }
  28. CXjmFtpDoc::~CXjmFtpDoc()
  29. {
  30. }
  31. BOOL CXjmFtpDoc::OnNewDocument()
  32. {
  33. if (!CDocument::OnNewDocument())
  34. return FALSE;
  35. // TODO: add reinitialization code here
  36. // (SDI documents will reuse this document)
  37. return TRUE;
  38. }
  39. /////////////////////////////////////////////////////////////////////////////
  40. // CXjmFtpDoc serialization
  41. void CXjmFtpDoc::Serialize(CArchive& ar)
  42. {
  43. if (ar.IsStoring())
  44. {
  45. // TODO: add storing code here
  46. }
  47. else
  48. {
  49. // TODO: add loading code here
  50. }
  51. }
  52. /////////////////////////////////////////////////////////////////////////////
  53. // CXjmFtpDoc diagnostics
  54. #ifdef _DEBUG
  55. void CXjmFtpDoc::AssertValid() const
  56. {
  57. CDocument::AssertValid();
  58. }
  59. void CXjmFtpDoc::Dump(CDumpContext& dc) const
  60. {
  61. CDocument::Dump(dc);
  62. }
  63. #endif //_DEBUG
  64. /////////////////////////////////////////////////////////////////////////////
  65. // CXjmFtpDoc commands