home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / odtlktv4.zip / ODTLKT / TOOLKIT / IDL / TYPLSITR.IDL < prev    next >
Text File  |  1995-12-13  |  2KB  |  62 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.  
  16. #ifndef _TYPLSITR_
  17. #define _TYPLSITR_
  18.  
  19. #ifndef _ODOBJECT_
  20. #include "ODObject.idl"
  21. #endif
  22.  
  23. //=====================================================================================
  24. // Classes defined in this interface
  25. //=====================================================================================
  26. interface  ODTypeListIterator;
  27.  
  28. //=====================================================================================
  29. // Classes used by this interface
  30. //=====================================================================================
  31. interface  ODTypeList;
  32.  
  33. //=====================================================================================
  34. // Class ODTypeListIterator
  35. //=====================================================================================
  36.  
  37. interface ODTypeListIterator : ODObject
  38. {
  39.   ODBoolean IsNotComplete();
  40.   ODType First();
  41.   ODType Next();
  42.  
  43.  
  44. #ifdef __SOMIDL__
  45.   implementation
  46.   {
  47.     functionprefix = ODTypeListIterator;
  48.     override:
  49.       somInit,
  50.       somUninit;
  51.     releaseorder:
  52.       IsNotComplete,
  53.       First,
  54.       Next,
  55.       reserved1;
  56.   };
  57. #endif
  58.  
  59. };
  60.  
  61. #endif  // _TYPLSITR_
  62.