home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / odtlktv4.zip / ODTLKT / TOOLKIT / IDL / LKSRCITR.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 _LKSRCITR_
  16. #define _LKSRCITR_
  17.  
  18. #ifndef _ODOBJECT_
  19. #include "ODObject.idl"
  20. #endif
  21.  
  22. //=====================================================================================
  23. // Classes defined in this interface
  24. //=====================================================================================
  25. interface  ODLinkSourceIterator;
  26.  
  27. //=====================================================================================
  28. // Classes used in this interface
  29. //=====================================================================================
  30. interface  ODLinkSource;
  31.  
  32. //=====================================================================================
  33. // Class ODLinkSourceIterator
  34. //=====================================================================================
  35.  
  36. interface ODLinkSourceIterator : ODObject
  37. {
  38.   ODBoolean IsNotComplete();
  39.   ODLinkSource First();
  40.   ODLinkSource Next();
  41.  
  42.  
  43. #ifdef __SOMIDL__
  44.   implementation
  45.   {
  46.     functionprefix = ODLinkSourceIterator;
  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  // _LKSRCITR_
  63.