home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tolkit45.zip / os2tk45 / som / include / scmodule.idl < prev    next >
Text File  |  1999-02-22  |  3KB  |  89 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/scmodule.idl 2.10 12/26/95 16:23:45 [7/30/96 14:46:01]
  14.  
  15.  
  16. #ifndef scmodule_idl
  17. #define scmodule_idl
  18.  
  19. #include <scentry.idl>
  20.  
  21. interface SOMTStructEntryC;
  22. interface SOMTTypedefEntryC;
  23. interface SOMTUnionEntryC;
  24. interface SOMTEnumEntryC;
  25. interface SOMTConstEntryC;
  26. interface SOMTSequenceEntryC;
  27. interface SOMTClassEntryC;
  28.  
  29. interface SOMTModuleEntryC : SOMTEntryC
  30. {
  31.   readonly attribute SOMTModuleEntryC somtOuterModule;
  32.   /* The module enclosing this module, or NULL if there is none. */
  33.  
  34.   readonly attribute string somtModuleFile;
  35.   /* The name of the file in which the module appears. */
  36.  
  37.   SOMTStructEntryC somtGetFirstModuleStruct ();
  38.   SOMTStructEntryC somtGetNextModuleStruct ();
  39.   SOMTTypedefEntryC somtGetFirstModuleTypedef ();
  40.   SOMTTypedefEntryC somtGetNextModuleTypedef ();
  41.   SOMTUnionEntryC somtGetFirstModuleUnion ();
  42.   SOMTUnionEntryC somtGetNextModuleUnion ();
  43.   SOMTEnumEntryC somtGetFirstModuleEnum ();
  44.   SOMTEnumEntryC somtGetNextModuleEnum ();
  45.   SOMTConstEntryC somtGetFirstModuleConstant ();
  46.   SOMTConstEntryC somtGetNextModuleConstant ();
  47.   SOMTSequenceEntryC somtGetFirstModuleSequence ();
  48.   SOMTSequenceEntryC somtGetNextModuleSequence ();
  49.   SOMTClassEntryC somtGetFirstInterface ();
  50.   SOMTClassEntryC somtGetNextInterface ();
  51.   SOMTModuleEntryC somtGetFirstModule ();
  52.   SOMTModuleEntryC somtGetNextModule ();
  53.   SOMTEntryC somtGetFirstModuleDef ();
  54.   SOMTEntryC somtGetNextModuleDef ();
  55.  
  56. #ifdef __SOMIDL__
  57.   implementation {
  58.     releaseorder: _get_somtOuterModule, somtGetFirstModuleStruct, 
  59.                   somtGetNextModuleStruct, somtGetFirstModuleTypedef, 
  60.                   somtGetNextModuleTypedef, somtGetFirstModuleUnion, 
  61.                   somtGetNextModuleUnion, somtGetFirstModuleEnum, 
  62.                   somtGetNextModuleEnum, somtGetFirstModuleConstant, 
  63.                   somtGetNextModuleConstant, somtGetFirstModuleSequence, 
  64.                   somtGetNextModuleSequence, somtGetFirstInterface, 
  65.                   somtGetNextInterface, somtGetFirstModule, 
  66.                   somtGetNextModule, somtGetFirstModuleDef, 
  67.           somtGetNextModuleDef, _get_somtModuleFile;
  68.  
  69.     //# Class Modifiers
  70.     majorversion = 2;
  71.     minorversion = 1;
  72.     filestem = scmodule;
  73.     callstyle = oidl;
  74.   
  75.     //# Method Modifiers
  76.     somDumpSelfInt: override;
  77.     somtSetSymbolsOnEntry: override;
  78.   
  79.     //# Attribute Modifiers
  80.     somtOuterModule: nodata;
  81.     somtModuleFile: nodata;
  82.  
  83.   };
  84. #endif /* __SOMIDL__ */
  85. };
  86.  
  87.  
  88. #endif  /* scmodule_idl */
  89.