home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / opendc12.zip / od124os2.exe / od12osr1.exe / src / LinkItr.idl < prev    next >
Text File  |  1997-03-21  |  3KB  |  112 lines

  1. /* @(#)Z 1.4 com/src/storage/idl/LinkItr.idl, oddataxfer, od96os2, odos29712d 97/03/21 17:20:08 (96/10/29 09:32:24) */
  2. //#====START_GENERATED_PROLOG======================================
  3. //#
  4. //#
  5. //#   COMPONENT_NAME: oddataxfer
  6. //#
  7. //#   CLASSES: none
  8. //#
  9. //#   ORIGINS: 82,27
  10. //#
  11. //#
  12. //#   (C) COPYRIGHT International Business Machines Corp. 1995,1996
  13. //#   All Rights Reserved
  14. //#   Licensed Materials - Property of IBM
  15. //#   US Government Users Restricted Rights - Use, duplication or
  16. //#   disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  17. //#       
  18. //#   IBM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  19. //#   ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  20. //#   PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  21. //#   CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
  22. //#   USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
  23. //#   OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE
  24. //#   OR PERFORMANCE OF THIS SOFTWARE.
  25. //#
  26. //#====END_GENERATED_PROLOG========================================
  27. //#
  28.  
  29. #ifdef __PRIVATE__
  30. //#
  31. //#    File:        LinkItr.idl
  32. //#
  33. //#    Contains:    Definition of ODLinkIterator class.
  34. //#
  35. //#    Owned by:    Craig Carper
  36. //#
  37. //#    Copyright:    (r) 1994 - 1995 by Apple Computer, Inc., all rights reserved.
  38. //#
  39. //#    Change History (most recent first):
  40. //#
  41. //#         <4>     8/15/95    CC        1275241: IDL review.
  42. //#         <3>      8/3/95    RR        #1257260: Collapse B classes. Remove
  43. //#                                    somInit methods. Don't call IsInitialized
  44. //#                                    or SubclassResponsibility
  45. //#         <2>     5/18/95    CC        1249197: Renamed InitODLinkIterator to
  46. //#                                    InitLinkIterator and made private.
  47. //#         <1>     8/11/94    CC        first checked in
  48. //#
  49. //#    To Do:
  50. //#
  51. #else
  52. //#    Copyright:    (r) 1994 - 1995 by Apple Computer, Inc., all rights reserved.
  53. #endif
  54.  
  55. #ifndef _LINKITR_
  56. #define _LINKITR_
  57.  
  58. #ifndef _ODOBJECT_
  59. #include "ODObject.idl"
  60. #endif
  61.  
  62. //=====================================================================================
  63. // Classes defined in this interface
  64. //=====================================================================================
  65. interface  ODLinkIterator;
  66.  
  67. //=====================================================================================
  68. // Classes used in this interface
  69. //=====================================================================================
  70. interface  ODLink;
  71.  
  72. //=====================================================================================
  73. // Class ODLinkIterator
  74. //=====================================================================================
  75.  
  76. interface ODLinkIterator : ODObject
  77. {
  78.     ODBoolean IsNotComplete();
  79.     ODLink First();
  80.     ODLink Next();
  81.  
  82. #ifdef __PRIVATE__
  83.  
  84.     void InitLinkIterator();    
  85.     
  86. #endif //# __PRIVATE__
  87.  
  88. #ifdef __SOMIDL__
  89.     implementation
  90.     {
  91.         majorversion = 1; minorversion = 0;
  92.  
  93.         functionprefix = ODLinkIterator;
  94.  
  95.         override:
  96.             somUninit;
  97.  
  98.         releaseorder:
  99.             IsNotComplete,
  100.             First,
  101.             Next,
  102.         #ifdef __PRIVATE__
  103.             InitLinkIterator;
  104.         #else
  105.             reserved1;
  106.         #endif
  107.     };
  108. #endif //# __SOMIDL__
  109. };
  110.  
  111. #endif  // _LINKITR_
  112.