home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / ole / wordpad / cntritem.cpp < prev    next >
C/C++ Source or Header  |  1998-03-26  |  1KB  |  51 lines

  1. // cntritem.cpp : implementation of the CWordPadCntrItem 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.  
  13. #include "stdafx.h"
  14. #include "wordpad.h"
  15.  
  16. #include "wordpdoc.h"
  17. #include "wordpvw.h"
  18. #include "cntritem.h"
  19.  
  20. #ifdef _DEBUG
  21. #undef THIS_FILE
  22. static char BASED_CODE THIS_FILE[] = __FILE__;
  23. #endif
  24.  
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CWordPadCntrItem implementation
  27.  
  28. IMPLEMENT_SERIAL(CWordPadCntrItem, CRichEditCntrItem, 0)
  29.  
  30. CWordPadCntrItem::CWordPadCntrItem(REOBJECT *preo, CWordPadDoc* pContainer)
  31.     : CRichEditCntrItem(preo, pContainer)
  32. {
  33. }
  34.  
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CWordPadCntrItem diagnostics
  37.  
  38. #ifdef _DEBUG
  39. void CWordPadCntrItem::AssertValid() const
  40. {
  41.     CRichEditCntrItem::AssertValid();
  42. }
  43.  
  44. void CWordPadCntrItem::Dump(CDumpContext& dc) const
  45. {
  46.     CRichEditCntrItem::Dump(dc);
  47. }
  48. #endif
  49.  
  50. /////////////////////////////////////////////////////////////////////////////
  51.