home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / som30tk.zip / som30os2.zip / include / scmeta.idl < prev    next >
Text File  |  1996-12-24  |  1KB  |  59 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/scmeta.idl 2.8 5/9/96 15:31:14 [12/24/96 07:39:48]
  14.  
  15.  
  16. #ifndef scmeta_idl
  17. #define scmeta_idl
  18.  
  19. #include <scentry.idl>
  20. interface SOMTClassEntryC;
  21.  
  22. interface SOMTMetaClassEntryC : SOMTEntryC
  23. {
  24.   readonly attribute string somtMetaFile;
  25.   // Returns the name of the file containing the definition of the
  26.   // meta class named in this entry.
  27.  
  28.   readonly attribute SOMTClassEntryC somtMetaClassDef;
  29.   // Returns the class definition entry for the meta class named in
  30.   // this entry.
  31.  
  32. #ifdef __SOMIDL__
  33.   implementation {
  34.     releaseorder: _get_somtMetaFile,_get_somtMetaClassDef;
  35.   
  36.     //# Class Modifiers
  37.     majorversion = 2;
  38.     minorversion = 1;
  39.     filestem = scmeta;
  40. #ifdef _WIN32
  41.     dllname = "some.dll";
  42. #endif
  43.     callstyle = oidl;
  44.   
  45.     //# Method Modifiers
  46.     somtSetSymbolsOnEntry: override;
  47.     somDumpSelfInt: override;
  48.   
  49.     //# Attribute Modifiers
  50.     somtMetaFile: nodata;
  51.     somtMetaClassDef: nodata;
  52.   
  53.   };
  54. #endif /* __SOMIDL__ */
  55. };
  56.  
  57.  
  58. #endif  /* scmeta_idl */
  59.