home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / odtlktv4.zip / ODTLKT / TOOLKIT / IDL / LINKITR.IDL < prev    next >
Text File  |  1995-11-08  |  2KB  |  63 lines

  1. /********************************************************************/
  2. /*  Licensed Materials - Property of IBM                            */
  3. /*                                                                  */
  4. /*                                                                  */
  5. /* Copyright (C) International Business Machines Corp., 1994.       */
  6. /* Copyright (C) Apple Computer, Inc., 1994                         */
  7. /*                                                                  */
  8. /*  US Government Users Restricted Rights -                         */
  9. /*  Use, duplication, or disclosure restricted                      */
  10. /*  by GSA ADP Schedule Contract with IBM Corp.                     */
  11. /*                                                                  */
  12. /*                                                                  */
  13. /********************************************************************/
  14.  
  15. #ifndef _LINKITR_
  16. #define _LINKITR_
  17.  
  18. #ifndef _ODOBJECT_
  19. #include "ODObject.idl"
  20. #endif
  21.  
  22. //=====================================================================================
  23. // Classes defined in this interface
  24. //=====================================================================================
  25. interface  ODLinkIterator;
  26.  
  27. //=====================================================================================
  28. // Classes used in this interface
  29. //=====================================================================================
  30. interface  ODLink;
  31.  
  32. //=====================================================================================
  33. // Class ODLinkIterator
  34. //=====================================================================================
  35.  
  36. interface ODLinkIterator : ODObject
  37. {
  38.   ODBoolean IsNotComplete();
  39.   ODLink First();
  40.   ODLink Next();
  41.  
  42.  
  43. #ifdef __SOMIDL__
  44.   implementation
  45.   {
  46.     functionprefix = ODLinkIterator;
  47.  
  48.     override:
  49.       somInit,
  50.       somUninit;
  51.  
  52.     releaseorder:
  53.       IsNotComplete,
  54.       First,
  55.       Next,
  56.       reserved1;
  57.   };
  58. #endif
  59.  
  60. };
  61.  
  62. #endif  // _LINKITR_
  63.