home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / include / scusrtyp.idl < prev    next >
Encoding:
Text File  |  1996-02-21  |  1.2 KB  |  49 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 scusrtyp_idl
  15. #define scusrtyp_idl
  16.  
  17. #include <sccommon.idl>
  18. interface SOMTUserDefinedTypeEntryC : SOMTCommonEntryC
  19. {
  20.  
  21.   readonly attribute SOMTTypedefEntryC somtOriginalTypedef;
  22.   // The typedef that defined the user-defined type.
  23.  
  24.   readonly attribute SOMTEntryC somtBaseTypeObj;
  25.   // The object representing the base type 
  26.   // (eg. short, float, unsigned long) of a user-defined type, 
  27.   // skipping over any intermediate user-defined types.
  28.  
  29. #ifdef __SOMIDL__
  30.   implementation {
  31.     releaseorder: _get_somtOriginalTypedef, _get_somtBaseTypeObj;
  32.  
  33.     majorversion = 2;
  34.     minorversion = 1;
  35.     filestem = scusrtyp;
  36.     callstyle = oidl;
  37.  
  38.     somtSetSymbolsOnEntry: override;
  39.     somDumpSelfInt: override;
  40.     _get_somtTypeObj: override;
  41.  
  42.     somtOriginalTypedef: nodata;
  43.     somtBaseTypeObj: nodata;
  44.   };
  45. #endif /* __SOMIDL__ */
  46. };
  47.  
  48. #endif  /* scusrtyp_idl */
  49.