SendEmailView.h
上传用户:jpdph_love
上传日期:2013-04-11
资源大小:116k
文件大小:2k
- // SendEmailView.h : interface of the CSendEmailView class
- //
- /////////////////////////////////////////////////////////////////////////////
- #if !defined(AFX_SENDEMAILVIEW_H__ADAA328B_C7DC_11D1_B07C_0060083CFB2D__INCLUDED_)
- #define AFX_SENDEMAILVIEW_H__ADAA328B_C7DC_11D1_B07C_0060083CFB2D__INCLUDED_
- #include "Email.h"
- #if _MSC_VER >= 1000
- #pragma once
- #endif // _MSC_VER >= 1000
- class CSendEmailView : public CView
- {
- protected: // create from serialization only
- CSendEmailView();
- DECLARE_DYNCREATE(CSendEmailView)
- // Attributes
- public:
- CSendEmailDoc* GetDocument();
- CEmail *m_pEmail;
- // Operations
- public:
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CSendEmailView)
- public:
- virtual void OnDraw(CDC* pDC); // overridden to draw this view
- virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
- protected:
- //}}AFX_VIRTUAL
- // Implementation
- public:
- virtual ~CSendEmailView();
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
- protected:
- // Generated message map functions
- protected:
- //{{AFX_MSG(CSendEmailView)
- afx_msg void OnEmailSendemail();
- afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
- afx_msg void OnTimer(UINT nIDEvent);
- afx_msg void OnUpdateEmailSendemail(CCmdUI* pCmdUI);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- #ifndef _DEBUG // debug version in SendEmailView.cpp
- inline CSendEmailDoc* CSendEmailView::GetDocument()
- { return (CSendEmailDoc*)m_pDocument; }
- #endif
- /////////////////////////////////////////////////////////////////////////////
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_SENDEMAILVIEW_H__ADAA328B_C7DC_11D1_B07C_0060083CFB2D__INCLUDED_)