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