home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / include / scseqnce.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 scseqnce_idl
  15. #define scseqnce_idl
  16.  
  17. #include <scentry.idl>
  18.  
  19. interface SOMTSequenceEntryC : SOMTEntryC
  20. {
  21.   readonly attribute long somtSeqLength;
  22.   // The length of the sequence.
  23.  
  24.   readonly attribute SOMTEntryC somtSeqType;
  25.   // The type of the sequence.
  26.  
  27. #ifdef __SOMIDL__
  28.   implementation {
  29.     releaseorder: _get_somtSeqLength, _get_somtSeqType, _get_somtSeqTypedef;
  30.  
  31.     majorversion = 2;
  32.     minorversion = 1;
  33.     filestem = scseqnce;
  34.     callstyle = oidl;
  35.  
  36.     somDumpSelfInt: override;
  37.     somtSetSymbolsOnEntry: override;
  38.  
  39.     somtSeqLength: nodata;
  40.     somtSeqType: nodata;
  41.     somtSeqTypedef: nodata;
  42.   };
  43. #endif /* __SOMIDL__ */
  44. };
  45.  
  46. #endif  /* scseqnce*/
  47.