home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / odtlktv4.zip / ODTLKT / TOOLKIT / IDL / SUCURSOR.IDL < prev    next >
Text File  |  1995-12-13  |  2KB  |  73 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 _SUCURSOR_
  17. #define _SUCURSOR_
  18.  
  19. #ifndef _ODOBJECT_
  20. #include "ODObject.idl"
  21. #endif
  22.  
  23. //==============================================================================
  24. // Classes defined in this interface
  25. //==============================================================================
  26. interface  ODStorageUnitCursor;
  27.  
  28. //==============================================================================
  29. // Classes used by this interface
  30. //==============================================================================
  31. interface  ODStorageUnit;
  32.  
  33. //==============================================================================
  34. // ODStorageUnitCursor
  35. //==============================================================================
  36.  
  37. interface ODStorageUnitCursor : ODObject
  38. {
  39.  
  40.   void GetProperty(out ODPropertyName propertyName);
  41.  
  42.   void GetValueType(out ODValueType valueType);
  43.  
  44.   void GetValueIndex(out ODValueIndex valueIndex);
  45.  
  46.    void SetProperty(in ODPropertyName propertyName);
  47.  
  48.   void SetValueType(in ODValueType valueType);
  49.  
  50.   void SetValueIndex(in ODValueIndex valueIndex);
  51.  
  52. #ifdef __SOMIDL__
  53.   implementation
  54.   {
  55.     functionprefix = ODStorageUnitCursor;
  56.   override:
  57.     somInit,
  58.     somUninit;
  59.   releaseorder:
  60.     reserved1,
  61.     GetProperty,
  62.     GetValueType,
  63.     GetValueIndex,
  64.     SetProperty,
  65.     SetValueType,
  66.     SetValueIndex;
  67.   };
  68.  
  69. #endif
  70. };
  71.  
  72. #endif  // _SUCURSOR_
  73.