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