home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / odtlktv4.zip / ODTLKT / TOOLKIT / IDL / ODOBJSPC.IDL < prev    next >
Text File  |  1995-12-13  |  2KB  |  57 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 _ODOBJSPC_
  16. #define _ODOBJSPC_
  17.  
  18. #ifndef _ODDESC_
  19. #include "ODDesc.idl"
  20. #endif
  21.  
  22. //==============================================================================
  23. // Classes defined in this interface
  24. //==============================================================================
  25.  
  26. interface  ODObjectSpec;
  27.  
  28. //==============================================================================
  29. // Classes used by this interface
  30. //==============================================================================
  31.  
  32. interface  ODDesc;
  33.  
  34. //==============================================================================
  35. // ODObjectSpec
  36. //==============================================================================
  37.  
  38. interface ODObjectSpec : ODDesc
  39. {
  40.   void InitODObjectSpec();
  41. #ifdef  __SOMIDL__
  42.   implementation
  43.   {
  44.       functionprefix = ODObjectSpec;
  45.     override:
  46.       somInit,
  47.       somUninit;
  48.     releaseorder:
  49.       somInit,
  50.       somUninit,
  51.       InitODObjectSpec;
  52.   };
  53. #endif
  54. };
  55.  
  56. #endif  //  _ODOBJSPC_
  57.