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