home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / include / scstruct.idl < prev    next >
Encoding:
Text File  |  1996-02-21  |  1.4 KB  |  55 lines

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