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