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

  1. //
  2. //   COMPONENT_NAME: some
  3. //
  4. //   ORIGINS: 27
  5. //
  6. //
  7. //    25H7912  (C)  COPYRIGHT International Business Machines Corp. 1992,1994,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. //#  @(#) somc/scstruct.idl 2.8 12/26/95 16:25:32 [7/30/96 14:46:03]
  14.  
  15.  
  16. #ifndef scstruct_idl
  17. #define scstruct_idl
  18.  
  19. #include <scentry.idl>
  20.  
  21. interface SOMTTypedefEntryC;
  22.  
  23. interface SOMTStructEntryC : SOMTEntryC
  24. {
  25.   SOMTTypedefEntryC somtGetFirstMember();
  26.   // The first member of the struct.
  27.   SOMTTypedefEntryC somtGetNextMember();
  28.   // The next member of the struct, relative to the previous call
  29.   // to this method or somtGetFirstMember.
  30.  
  31.   readonly attribute SOMTClassEntryC somtStructClass;
  32.   // The class in which the structure was defined.
  33.  
  34.   readonly attribute boolean somtIsException;
  35.   // Whether the structure is really an exception.
  36. #ifdef __SOMIDL__
  37.   implementation {
  38.     releaseorder: _get_somtStructClass, _get_somtIsException,
  39.         somtGetFirstMember, somtGetNextMember;
  40.   
  41.     //# Class Modifiers
  42.     majorversion = 2;
  43.     minorversion = 1;
  44.     filestem = scstruct;
  45.     callstyle = oidl;
  46.   
  47.     //# Method Modifiers
  48.     somDumpSelfInt: override;
  49.     somtSetSymbolsOnEntry: override;
  50.   
  51.     //# Attribute Modifiers
  52.     somtIsException: nodata;
  53.     somtStructClass: nodata;
  54.  
  55.   };
  56. #endif /* __SOMIDL__ */
  57. };
  58.  
  59.  
  60. #endif  /* scstruct_idl */
  61.