home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / odtlktv4.zip / ODTLKT / TOOLKIT / IDL / ODSCRPTG.IDL < prev    next >
Text File  |  1995-11-08  |  2KB  |  71 lines

  1. /********************************************************************/
  2. /*  Licensed Materials - Property of IBM                            */
  3. /*                                                                  */
  4. /*                                                                  */
  5. /* Copyright (C) International Business Machines Corp., 1994.       */
  6. /* Copyright (C) Apple Computer, Inc., 1994                         */
  7. /*                                                                  */
  8. /*  US Government Users Restricted Rights -                         */
  9. /*  Use, duplication, or disclosure restricted                      */
  10. /*  by GSA ADP Schedule Contract with IBM Corp.                     */
  11. /*                                                                  */
  12. /*                                                                  */
  13. /********************************************************************/
  14.  
  15. #ifndef _ODSCRPTG_
  16. #define _ODSCRPTG_
  17.  
  18. #ifndef _ODOBJECT_
  19. #include "ODObject.idl"
  20. #endif
  21.  
  22. //==============================================================================
  23. // Theory of Operation
  24. //==============================================================================
  25.  
  26. /*
  27. */
  28.  
  29. //==============================================================================
  30. // Classes defined in this interface
  31. //==============================================================================
  32.  
  33. interface  ScriptingObject;
  34.  
  35. //==============================================================================
  36. // Classes used by this interface
  37. //==============================================================================
  38.  
  39. interface ODSession;
  40.  
  41. //=====================================================================================
  42. // Implementation Types
  43. //=====================================================================================
  44.  
  45.  
  46. //==============================================================================
  47. // ScriptingObject
  48. //==============================================================================
  49.  
  50. interface ScriptingObject :  ODObject
  51. {    
  52.   void InitScriptingObject();    
  53.  
  54. #ifdef __SOMIDL__
  55.   implementation
  56.   {
  57.     functionprefix = ScriptingObject;
  58.  
  59.     somInit : override;
  60.     somUninit : override;
  61.     releaseorder:
  62.     InitScriptingObject;
  63.  
  64.  
  65.   };
  66. #endif
  67. };
  68.  
  69. #endif
  70.  
  71.