home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / odtlktv4.zip / ODTLKT / TOOLKIT / IDL / TRANSLT.IDL < prev    next >
Text File  |  1995-12-13  |  2KB  |  68 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.  
  16. #ifndef _TRANSLT_
  17. #define _TRANSLT_
  18.  
  19. #ifndef _TRANSLTB_
  20. #include "TransltB.idl"
  21. #endif
  22.  
  23. //=====================================================================================
  24. // Classes defined in this interface
  25. //=====================================================================================
  26. interface      ODTranslation;
  27.  
  28. //=====================================================================================
  29. // Classes used in this interface
  30. //=====================================================================================
  31. interface    TranslationDialog;
  32. interface    ODStorageUnit;
  33. interface    ODPartWrapper;
  34. interface    ODSession;
  35.  
  36. //=====================================================================================
  37. // Class ODTranslation
  38. //=====================================================================================
  39.  
  40. interface ODTranslation :  ODBaseTranslation
  41. {
  42.  
  43. #ifdef __SOMIDL__
  44.   implementation
  45.   {
  46.       functionprefix = ODTranslation;
  47.       override:
  48.         Purge,
  49.         somInit,
  50.         somUninit,
  51.         CanTranslate,
  52.         GetTranslationOf,
  53.         TranslateView,
  54.         Translate,
  55.         GetISOTypeFromPlatformType,
  56.         GetPlatformTypeFromISOType;
  57.  
  58.     releaseorder:
  59.         reserved1,
  60.         reserved2;
  61.  
  62.   };
  63. #endif
  64.  
  65. };
  66.  
  67. #endif    // _TRANSLT_
  68.