home *** CD-ROM | disk | FTP | other *** search
- //
- // COMPONENT_NAME: some
- //
- // ORIGINS: 27
- //
- //
- // 10H9767, 10H9769 (C) COPYRIGHT International Business Machines Corp. 1992,1994
- // All Rights Reserved
- // Licensed Materials - Property of IBM
- // US Government Users Restricted Rights - Use, duplication or
- // disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- //
-
- #ifndef scusrtyp_idl
- #define scusrtyp_idl
-
- #include <sccommon.idl>
- interface SOMTUserDefinedTypeEntryC : SOMTCommonEntryC
- {
-
- readonly attribute SOMTTypedefEntryC somtOriginalTypedef;
- // The typedef that defined the user-defined type.
-
- readonly attribute SOMTEntryC somtBaseTypeObj;
- // The object representing the base type
- // (eg. short, float, unsigned long) of a user-defined type,
- // skipping over any intermediate user-defined types.
-
- #ifdef __SOMIDL__
- implementation {
- releaseorder: _get_somtOriginalTypedef, _get_somtBaseTypeObj;
-
- majorversion = 2;
- minorversion = 1;
- filestem = scusrtyp;
- callstyle = oidl;
-
- somtSetSymbolsOnEntry: override;
- somDumpSelfInt: override;
- _get_somtTypeObj: override;
-
- somtOriginalTypedef: nodata;
- somtBaseTypeObj: nodata;
- };
- #endif /* __SOMIDL__ */
- };
-
- #endif /* scusrtyp_idl */
-