home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c480 / 19.ddi / MFC / SAMPLES / VBCHART / CHARTDOC.H_ / CHARTDOC.H
Encoding:
C/C++ Source or Header  |  1993-02-08  |  1.1 KB  |  44 lines

  1. // chartdoc.h : interface of the CChartDoc class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992 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 Microsoft
  9. // QuickHelp and/or WinHelp documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13.  
  14.  
  15. class CGridEntry;   // forward reference
  16.  
  17. class CChartDoc : public CDocument
  18. {
  19. protected: // create from serialization only
  20.     CChartDoc();
  21.     DECLARE_DYNCREATE(CChartDoc)
  22.  
  23. // Attributes
  24. public:
  25.     CGridEntry* m_pDocGrid;
  26.     BOOL        m_bDirtyGraph;
  27.  
  28. // Operations
  29. public:
  30.  
  31. // Implementation
  32. public:
  33.     virtual ~CChartDoc();
  34.     virtual void Serialize(CArchive& ar);   // overridden for document i/o
  35.  
  36. // Generated message map functions
  37. protected:
  38.     //{{AFX_MSG(CChartDoc)
  39.     //}}AFX_MSG
  40.     DECLARE_MESSAGE_MAP()
  41. };
  42.  
  43. /////////////////////////////////////////////////////////////////////////////
  44.