Source code of Windows XP (NT5)
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.

44 lines
1010 B

  1. // mimedoc.h : interface of the CMimeDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. class CMimeDoc : public CDocument
  5. {
  6. protected: // create from serialization only
  7. CMimeDoc();
  8. DECLARE_DYNCREATE(CMimeDoc)
  9. // Attributes
  10. public:
  11. // Operations
  12. public:
  13. // Overrides
  14. // ClassWizard generated virtual function overrides
  15. //{{AFX_VIRTUAL(CMimeDoc)
  16. public:
  17. virtual BOOL OnNewDocument();
  18. //}}AFX_VIRTUAL
  19. // Implementation
  20. public:
  21. virtual ~CMimeDoc();
  22. virtual void Serialize(CArchive& ar); // overridden for document i/o
  23. #ifdef _DEBUG
  24. virtual void AssertValid() const;
  25. virtual void Dump(CDumpContext& dc) const;
  26. #endif
  27. protected:
  28. // Generated message map functions
  29. protected:
  30. //{{AFX_MSG(CMimeDoc)
  31. // NOTE - the ClassWizard will add and remove member functions here.
  32. // DO NOT EDIT what you see in these blocks of generated code !
  33. //}}AFX_MSG
  34. DECLARE_MESSAGE_MAP()
  35. };
  36. /////////////////////////////////////////////////////////////////////////////