home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / include / sctdef.idl < prev    next >
Encoding:
Text File  |  1996-02-21  |  1.6 KB  |  56 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 sctdef_idl
  15. #define sctdef_idl
  16.  
  17. #include <sccommon.idl>
  18. interface SOMTTypedefEntryC : SOMTEntryC
  19. {
  20. readonly attribute SOMTEntryC somtTypedefType;
  21. // The type of the typedef. This does not include pointer stars or
  22. // array declarators.   These must be obtained by examining each
  23. // of the declarators.
  24.  
  25. SOMTCommonEntryC somtGetFirstDeclarator();
  26. // The first declarator for this typedef.
  27. // Declarators of struct members will be instances of SOMTDataEntryC, 
  28. // while declarators of typedefs will be instances of SOMTUserDefinedTypeEntryC.
  29.  
  30. SOMTCommonEntryC somtGetNextDeclarator();
  31. // The next declarator for this typedef, relative to the previous 
  32. // call to this method or somtGetFirstDeclarator.
  33. // Declarators of struct members will be instances of SOMTDataEntryC, 
  34. // while declarators of typedefs will be instances of SOMTUserDefinedTypeEntryC.
  35.  
  36. #ifdef __SOMIDL__
  37.   implementation {
  38.     releaseorder: _get_somtTypedefType, 
  39.           somtGetFirstDeclarator, somtGetNextDeclarator;
  40.  
  41.     majorversion = 2;
  42.     minorversion = 1;
  43.     filestem = sctdef;
  44.     callstyle = oidl;
  45.  
  46.     somtSetSymbolsOnEntry: override;
  47.     somDumpSelfInt: override;
  48.  
  49.     somtTypedefType: nodata;
  50.  
  51.   };
  52. #endif /* __SOMIDL__ */
  53. };
  54.  
  55. #endif  /* sctdef_idl */
  56.