home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c480 / 20.ddi / MFC / SAMPLES / SCRIBBLE / STEP0 / SCRIBDOC.H_ / SCRIBDOC.H
Encoding:
C/C++ Source or Header  |  1993-02-08  |  1.3 KB  |  52 lines

  1. // scribdoc.h : interface of the CScribDoc 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 CScribDoc : public CDocument
  16. {
  17. protected: // create from serialization only
  18.     CScribDoc();
  19.     DECLARE_DYNCREATE(CScribDoc)
  20.  
  21. // Attributes
  22. public:
  23.  
  24.  
  25. // Operations
  26. public:
  27.  
  28. // Implementation
  29.  
  30. public:
  31.     virtual ~CScribDoc();
  32.     virtual void Serialize(CArchive& ar);   // overridden for document i/o
  33. #ifdef _DEBUG
  34.     virtual void AssertValid() const;
  35.     virtual void Dump(CDumpContext& dc) const;
  36. #endif
  37. protected:
  38.     virtual BOOL    OnNewDocument();
  39.  
  40. // Generated message map functions
  41. protected:
  42.     //{{AFX_MSG(CScribDoc)
  43.         // NOTE - the ClassWizard will add and remove member functions here.
  44.         //    DO NOT EDIT what you see in these blocks of generated code !
  45.     //}}AFX_MSG
  46.     DECLARE_MESSAGE_MAP()
  47. };
  48.  
  49. /////////////////////////////////////////////////////////////////////////////
  50.  
  51.  
  52.