MAINDOC.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // maindoc.h : interface of the CMainDoc class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. class CMainDoc : public CDocument
  13. {
  14. protected: // create from serialization only
  15. CMainDoc();
  16. DECLARE_SERIAL(CMainDoc)
  17. // Attributes
  18. public:
  19. // an example of document specific data
  20. CString m_strData;          // string text
  21. COLORREF m_colorData;       // color for the string text
  22. // Implementation
  23. public:
  24. virtual ~CMainDoc();
  25. virtual void Serialize(CArchive& ar);   // overridden for document i/o
  26. protected:
  27. virtual BOOL    OnNewDocument();
  28. // Generated message map functions
  29. protected:
  30. //{{AFX_MSG(CMainDoc)
  31. afx_msg void OnChangeData();
  32. //}}AFX_MSG
  33. DECLARE_MESSAGE_MAP()
  34. };
  35. /////////////////////////////////////////////////////////////////////////////