home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / include / scpass.idl < prev    next >
Encoding:
Text File  |  1996-02-21  |  1.6 KB  |  58 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 scpass_idl
  15. #define scpass_idl
  16.  
  17. #include <scentry.idl>
  18. interface SOMTPassthruEntryC : SOMTEntryC
  19. {
  20.   readonly attribute string somtPassthruBody;
  21.   // The source content text of this passthru entry without
  22.   // any modification. Newlines that were present in the source will
  23.   // still be present.
  24.  
  25.   readonly attribute string somtPassthruLanguage;
  26.   // Returns the name of the language for which this passthru entry
  27.   // is intended. Language names are always all upper case.
  28.  
  29.   readonly attribute string somtPassthruTarget;
  30.   // Returns the target for this passthru entry.
  31.  
  32.   boolean somtIsBeforePassthru();
  33.   // Returns 1 (true) if this passthru entry is to be put at the
  34.   // beginning of the file or 0 (false) if this passthru entry is to
  35.   // go later in the file.
  36.  
  37. #ifdef __SOMIDL__
  38.   implementation {
  39.     releaseorder: _get_somtPassthruBody,_get_somtPassthruTarget,
  40.         _get_somtPassthruLanguage, somtIsBeforePassthru;
  41.  
  42.     majorversion = 2;
  43.     minorversion = 1;
  44.     filestem = scpass;
  45.     callstyle = oidl;
  46.  
  47.     somtSetSymbolsOnEntry: override;
  48.     somDumpSelfInt: override;
  49.  
  50.     somtPassthruTarget: nodata;
  51.     somtPassthruLanguage: nodata;
  52.     somtPassthruBody: nodata;
  53.   };
  54. #endif /* __SOMIDL__ */
  55. };
  56.  
  57. #endif  /* scpass_idl */
  58.