home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / odtlktv4.zip / ODTLKT / TOOLKIT / IDL / EMBFRITR.IDL < prev    next >
Text File  |  1995-12-13  |  2KB  |  79 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 _EMBFRITR_
  17. #define _EMBFRITR_
  18.  
  19. #ifndef _ODOBJECT
  20. #include "ODObject.idl"
  21. #endif
  22.  
  23. //==============================================================================
  24. // Classes defined in this interface
  25. //==============================================================================
  26.  
  27. interface  ODEmbeddedFramesIterator;
  28.  
  29. //==============================================================================
  30. // Classes used by this interface
  31. //==============================================================================
  32.  
  33. interface  ODFrame;
  34. interface  ODPart;
  35.  
  36. //==============================================================================
  37. // ODEmbeddedFramesIterator
  38. //==============================================================================
  39.  
  40. interface ODEmbeddedFramesIterator : ODObject
  41. {
  42.     void InitEmbeddedFramesIterator(in ODPart part);
  43.  
  44.     ODFrame        First();
  45.  
  46.     ODFrame        Next();
  47.  
  48.     ODBoolean    IsNotComplete();
  49.  
  50.     void        PartRemoved();
  51.  
  52.     ODBoolean    IsValid();
  53.  
  54.     void        CheckValid();
  55.  
  56. #ifdef __SOMIDL__
  57.     implementation
  58.     {
  59.         functionprefix = ODEmbeddedFramesIterator;
  60.  
  61.         override:
  62.             somInit,
  63.             somUninit;
  64.  
  65.         releaseorder:
  66.             InitEmbeddedFramesIterator,
  67.             First,
  68.             Next,
  69.             IsNotComplete,
  70.             PartRemoved,
  71.             IsValid,
  72.             CheckValid;
  73.     };
  74. #endif
  75. };
  76.  
  77. #endif // _EMBFRITR_
  78.  
  79.