home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tolkit45.zip / os2tk45 / som / include / srkset.idl < prev    next >
Text File  |  1999-02-22  |  1KB  |  54 lines

  1. //
  2. //   COMPONENT_NAME: somp
  3. //
  4. //   ORIGINS: 27
  5. //
  6. //
  7. //    25H7912  (C)  COPYRIGHT International Business Machines Corp. 1992,1996,1996  
  8. //   All Rights Reserved
  9. //   Licensed Materials - Property of IBM
  10. //   US Government Users Restricted Rights - Use, duplication or
  11. //   disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  12. //
  13. //#  @(#) 2.11 src/somp/srkset.idl, somp, som2.1 4/12/96 11:00:52 [7/30/96 14:47:07]
  14.  
  15. /*
  16.  *   21055    [04/12/96]  partha    make the dict.idl include come from private
  17. */
  18.  
  19.  
  20.  
  21.  
  22. #ifndef srkset_idl
  23. #define srkset_idl
  24.  
  25. #include <somobj.idl>
  26. interface SOMPKeyedSet : SOMObject
  27.  
  28. // A set of objects identified by a key.
  29.  
  30. {
  31.    SOMObject sompGetFirstObject();
  32. // Get first object in this set.
  33. // If set is empty, returns NULL.
  34.  
  35. #ifdef __SOMIDL__
  36.  
  37.    implementation
  38.    {
  39.       callstyle=idl;
  40.       dllname="somp.dll";
  41.  
  42.       releaseorder: sompGetFirstObject;
  43.  
  44.    // Class Modifiers
  45.       majorversion = 2;
  46.       minorversion = 1;
  47.       filestem = srkset;
  48.  
  49.    };
  50. #endif /* __SOMIDL__ */
  51.  
  52. };
  53. #endif  /* srkset_idl */
  54.