SendEmailDoc.cpp
上传用户:jpdph_love
上传日期:2013-04-11
资源大小:116k
文件大小:1k
- // SendEmailDoc.cpp : implementation of the CSendEmailDoc class
- //
- #include "stdafx.h"
- #include "SendEmail.h"
- #include "SendEmailDoc.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CSendEmailDoc
- IMPLEMENT_DYNCREATE(CSendEmailDoc, CDocument)
- BEGIN_MESSAGE_MAP(CSendEmailDoc, CDocument)
- //{{AFX_MSG_MAP(CSendEmailDoc)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CSendEmailDoc construction/destruction
- CSendEmailDoc::CSendEmailDoc()
- {
- }
- CSendEmailDoc::~CSendEmailDoc()
- {
- }
- BOOL CSendEmailDoc::OnNewDocument()
- {
- if (!CDocument::OnNewDocument())
- return FALSE;
- return TRUE;
- }
- /////////////////////////////////////////////////////////////////////////////
- // CSendEmailDoc serialization
- void CSendEmailDoc::Serialize(CArchive& ar)
- {
- if (ar.IsStoring())
- {
- }
- else
- {
- }
- }
- /////////////////////////////////////////////////////////////////////////////
- // CSendEmailDoc diagnostics
- #ifdef _DEBUG
- void CSendEmailDoc::AssertValid() const
- {
- CDocument::AssertValid();
- }
- void CSendEmailDoc::Dump(CDumpContext& dc) const
- {
- CDocument::Dump(dc);
- }
- #endif //_DEBUG
- /////////////////////////////////////////////////////////////////////////////
- // CSendEmailDoc commands