home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / include / scbase.idl < prev    next >
Encoding:
Text File  |  1996-02-21  |  989 b   |  43 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 scbase_idl
  15. #define scbase_idl
  16.  
  17. #include <scentry.idl>
  18. interface SOMTClassEntryC;
  19.  
  20. interface SOMTBaseClassEntryC : SOMTEntryC
  21. {
  22.   readonly attribute SOMTClassEntryC somtBaseClassDef;
  23.   // Returns the class definition entry for the Base class named in
  24.   // this entry.
  25. #ifdef __SOMIDL__
  26.   implementation {
  27.     releaseorder: _get_somtBaseClassDef;
  28.  
  29.     majorversion = 2;
  30.     minorversion = 1;
  31.     filestem = scbase;
  32.     callstyle = oidl;
  33.  
  34.     somDumpSelfInt: override;
  35.     somtSetSymbolsOnEntry: override;
  36.  
  37.     somtBaseClassDef: nodata;
  38.   };
  39. #endif /* __SOMIDL__ */
  40. };
  41.  
  42. #endif  /* scbase_idl */
  43.