home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / include / scmeta.idl < prev    next >
Encoding:
Text File  |  1996-02-21  |  1.2 KB  |  50 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 scmeta_idl
  15. #define scmeta_idl
  16.  
  17. #include <scentry.idl>
  18. interface SOMTClassEntryC;
  19.  
  20. interface SOMTMetaClassEntryC : SOMTEntryC
  21. {
  22.   readonly attribute string somtMetaFile;
  23.   // Returns the name of the file containing the definition of the
  24.   // meta class named in this entry.
  25.  
  26.   readonly attribute SOMTClassEntryC somtMetaClassDef;
  27.   // Returns the class definition entry for the meta class named in
  28.   // this entry.
  29.  
  30. #ifdef __SOMIDL__
  31.   implementation {
  32.     releaseorder: _get_somtMetaFile,_get_somtMetaClassDef;
  33.  
  34.     majorversion = 2;
  35.     minorversion = 1;
  36.     filestem = scmeta;
  37.     callstyle = oidl;
  38.  
  39.     somtSetSymbolsOnEntry: override;
  40.     somDumpSelfInt: override;
  41.  
  42.     somtMetaFile: nodata;
  43.     somtMetaClassDef: nodata;
  44.  
  45.   };
  46. #endif /* __SOMIDL__ */
  47. };
  48.  
  49. #endif  /* scmeta_idl */
  50.