Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.4 KiB

  1. // mimeview.h : interface of the CMimeView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. class CMimeView : public CFormView
  5. {
  6. protected: // create from serialization only
  7. CMimeView();
  8. DECLARE_DYNCREATE(CMimeView)
  9. public:
  10. //{{AFX_DATA(CMimeView)
  11. enum{ IDD = IDD_MIME_FORM };
  12. // NOTE: the ClassWizard will add data members here
  13. //}}AFX_DATA
  14. // Attributes
  15. public:
  16. CMimeDoc* GetDocument();
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CMimeView)
  22. public:
  23. virtual void OnInitialUpdate();
  24. protected:
  25. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. public:
  29. virtual ~CMimeView();
  30. #ifdef _DEBUG
  31. virtual void AssertValid() const;
  32. virtual void Dump(CDumpContext& dc) const;
  33. #endif
  34. protected:
  35. // Generated message map functions
  36. protected:
  37. //{{AFX_MSG(CMimeView)
  38. // NOTE - the ClassWizard will add and remove member functions here.
  39. // DO NOT EDIT what you see in these blocks of generated code !
  40. //}}AFX_MSG
  41. DECLARE_MESSAGE_MAP()
  42. };
  43. #ifndef _DEBUG // debug version in mimeview.cpp
  44. inline CMimeDoc* CMimeView::GetDocument()
  45. { return (CMimeDoc*)m_pDocument; }
  46. #endif
  47. /////////////////////////////////////////////////////////////////////////////