home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 December / PCWKCD1296.iso / vjplusb / activex / inetsdk / samples / urlpad / linkitem.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-05-29  |  993 b   |  35 lines

  1. //=------------------------------------------------------------------------=
  2. // LinkItem.h
  3. //=------------------------------------------------------------------------=
  4. // Copyright 1992-1996 Microsoft Corporation.  All Rights Reserved.
  5. //
  6. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  7. // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  8. // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  9. // PARTICULAR PURPOSE.
  10. //=--------------------------------------------------------------------------=
  11. //
  12. // Definition of the CEmbeddedItem class
  13. //
  14.  
  15. #ifndef __LINKITEM_H__
  16. #define __LINKITEM_H__
  17.  
  18. class CPadDoc;
  19. class CPadView;
  20.  
  21. class CPadLinkItem : public CEmbeddedItem
  22. {
  23.     DECLARE_DYNAMIC(CPadLinkItem)
  24.  
  25. // Constructors
  26. public:
  27.     CPadLinkItem(CPadDoc* pContainerDoc, LPCTSTR pszItemName);
  28.     CPadLinkItem(CPadDoc* pContainerDoc, int nFrom, int nTo);
  29.  
  30. protected:
  31.     virtual void OnShow();
  32. };
  33.  
  34. #endif  // __LINKITEM_H__
  35.