home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / include / scstring.idl < prev    next >
Encoding:
Text File  |  1996-02-21  |  895 b   |  41 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 scstring_idl
  15. #define scstring_idl
  16.  
  17. #include <scentry.idl>
  18.  
  19. interface SOMTStringEntryC : SOMTEntryC
  20. {
  21.   readonly attribute long somtStringLength;
  22.   // The length of the string.
  23. #ifdef __SOMIDL__
  24.   implementation {
  25.     releaseorder: _get_somtStringLength;
  26.  
  27.     majorversion = 2;
  28.     minorversion = 1;
  29.     filestem = scstring;
  30.     callstyle = oidl;
  31.  
  32.     somDumpSelfInt: override;
  33.     somtSetSymbolsOnEntry: override;
  34.  
  35.     somtStringLength: nodata;
  36.   };
  37. #endif /* __SOMIDL__ */
  38. };
  39.  
  40. #endif  /* scstring*/
  41.