home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / include / scenumnm.idl < prev    next >
Encoding:
Text File  |  1996-02-21  |  1.0 KB  |  47 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 scenumnm_idl
  15. #define scenumnm_idl
  16.  
  17. #include <scentry.idl>
  18.  
  19. interface SOMTEnumEntryC;
  20.  
  21. interface SOMTEnumNameEntryC : SOMTEntryC
  22. {
  23.   readonly attribute SOMTEnumEntryC somtEnumPtr;
  24.   // A pointer to the enumerator.
  25.  
  26.   readonly attribute unsigned long somtEnumVal;
  27.   // The value of the enumeration.
  28. #ifdef __SOMIDL__
  29.   implementation {
  30.     releaseorder: _get_somtEnumPtr, _get_somtEnumVal;
  31.  
  32.     majorversion = 2;
  33.     minorversion = 1;
  34.     filestem = scenumnm;
  35.     callstyle = oidl;
  36.  
  37.     somDumpSelfInt: override;
  38.     somtSetSymbolsOnEntry: override;
  39.  
  40.     somtEnumPtr: nodata;
  41.     somtEnumVal: nodata;
  42.   };
  43. #endif /* __SOMIDL__ */
  44. };
  45.  
  46. #endif  /* scenumnm */
  47.