home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tolkit45.zip / os2tk45 / som / include / scpass.idl < prev    next >
Text File  |  1999-02-22  |  2KB  |  64 lines

  1. //
  2. //   COMPONENT_NAME: some
  3. //
  4. //   ORIGINS: 27
  5. //
  6. //
  7. //    25H7912  (C)  COPYRIGHT International Business Machines Corp. 1992,1994,1996 
  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. //#  @(#) somc/scpass.idl 2.7 12/26/95 16:24:28 [7/30/96 14:46:02]
  14.  
  15.  
  16. #ifndef scpass_idl
  17. #define scpass_idl
  18.  
  19. #include <scentry.idl>
  20. interface SOMTPassthruEntryC : SOMTEntryC
  21. {
  22.   readonly attribute string somtPassthruBody;
  23.   // The source content text of this passthru entry without
  24.   // any modification. Newlines that were present in the source will
  25.   // still be present.
  26.  
  27.   readonly attribute string somtPassthruLanguage;
  28.   // Returns the name of the language for which this passthru entry
  29.   // is intended. Language names are always all upper case.
  30.  
  31.   readonly attribute string somtPassthruTarget;
  32.   // Returns the target for this passthru entry.
  33.  
  34.   boolean somtIsBeforePassthru();
  35.   // Returns 1 (true) if this passthru entry is to be put at the
  36.   // beginning of the file or 0 (false) if this passthru entry is to
  37.   // go later in the file.
  38.  
  39. #ifdef __SOMIDL__
  40.   implementation {
  41.     releaseorder: _get_somtPassthruBody,_get_somtPassthruTarget,
  42.         _get_somtPassthruLanguage, somtIsBeforePassthru;
  43.   
  44.     //# Class Modifiers
  45.     majorversion = 2;
  46.     minorversion = 1;
  47.     filestem = scpass;
  48.     callstyle = oidl;
  49.   
  50.     //# Method Modifiers
  51.     somtSetSymbolsOnEntry: override;
  52.     somDumpSelfInt: override;
  53.   
  54.     //# Attribute Modifiers
  55.     somtPassthruTarget: nodata;
  56.     somtPassthruLanguage: nodata;
  57.     somtPassthruBody: nodata;
  58.   };
  59. #endif /* __SOMIDL__ */
  60. };
  61.  
  62.  
  63. #endif  /* scpass_idl */
  64.