home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / ole / superpad / linkitem.h < prev    next >
C/C++ Source or Header  |  1998-03-26  |  868b  |  34 lines

  1. // linkitem.h : interface of the CEmbeddedItem 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.  
  14. #ifndef __LINKITEM_H__
  15. #define __LINKITEM_H__
  16.  
  17. class CPadDoc;
  18. class CPadView;
  19.  
  20. class CPadLinkItem : public CEmbeddedItem
  21. {
  22.     DECLARE_DYNAMIC(CPadLinkItem)
  23.  
  24. // Constructors
  25. public:
  26.     CPadLinkItem(CPadDoc* pContainerDoc, LPCTSTR pszItemName);
  27.     CPadLinkItem(CPadDoc* pContainerDoc, int nFrom, int nTo);
  28.  
  29. protected:
  30.     virtual void OnShow();
  31. };
  32.  
  33. #endif  // __LINKITEM_H__
  34.