home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c480 / 19.ddi / MFC / SAMPLES / SUPERPAD / PADDOC.H_ / PADDOC.H
Encoding:
C/C++ Source or Header  |  1993-02-08  |  892 b   |  32 lines

  1. // paddoc.h : interface of the CPadDoc 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. #ifndef __PADDOC_H__
  16. #define __PADDOC_H__
  17.  
  18. class CPadDoc : public CDocument
  19. {
  20. protected:
  21.     DECLARE_DYNCREATE(CPadDoc)
  22.     virtual void Serialize(CArchive& ar);   // overridden for document i/o
  23.     virtual void DeleteContents();
  24.     //{{AFX_MSG(CPadDoc)
  25.     //}}AFX_MSG
  26.     DECLARE_MESSAGE_MAP()
  27. };
  28.  
  29. #endif  // __PADDOC_H__
  30.  
  31. /////////////////////////////////////////////////////////////////////////////
  32.