cntritem.cpp
Upload User: caisha3
Upload Date: 2013-09-21
Package Size: 208739k
Code Size: 1k
Category:

Windows Develop

Development Platform:

Visual C++

  1. // cntritem.cpp : implementation of the CNetClipCntrItem class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 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. // BUGBUG: This class is probably not needed.  Just use
  14. // CRichEditCntrItem direclty instead.
  15. #include "stdafx.h"
  16. #include "netclip.h"
  17. #include "doc.h"
  18. #include "View.h"
  19. #include "cntritem.h"
  20. #ifdef _DEBUG
  21. #undef THIS_FILE
  22. static char BASED_CODE THIS_FILE[] = __FILE__;
  23. #endif
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CNetClipCntrItem implementation
  26. IMPLEMENT_SERIAL(CNetClipCntrItem, CRichEditCntrItem, 0)
  27. CNetClipCntrItem::CNetClipCntrItem(REOBJECT *preo, CNetClipDoc* pContainer)
  28. : CRichEditCntrItem(preo, pContainer)
  29. {
  30. }
  31. /////////////////////////////////////////////////////////////////////////////
  32. // CNetClipCntrItem diagnostics
  33. #ifdef _DEBUG
  34. void CNetClipCntrItem::AssertValid() const
  35. {
  36. CRichEditCntrItem::AssertValid();
  37. }
  38. void CNetClipCntrItem::Dump(CDumpContext& dc) const
  39. {
  40. CRichEditCntrItem::Dump(dc);
  41. }
  42. #endif
  43. /////////////////////////////////////////////////////////////////////////////