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