home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wpentk.zip / WBPENTK4.DSK / IDMMIXED.IDL < prev    next >
Text File  |  1994-10-07  |  1KB  |  48 lines

  1.  
  2. //  idmmixed.idl
  3. //
  4. //  CLASS: IDMMixedResult
  5. //
  6. //  CLASS HIERARCHY:
  7. //
  8. //     SOMObject
  9. //       └── IDMResult
  10. //             └── IDMRecoResult
  11. //                   └── IDMGestureResult
  12. //                   └── IDMTextResult  |
  13. //                          |           |
  14. //                          └── IDMMixedResult
  15. //
  16. //  DESCRIPTION:
  17. //
  18. //     Input Data Mixed Result class.
  19. //
  20. #ifndef __IDMMIXED_IDL__
  21. #define __IDMMIXED_IDL__
  22.  
  23. #include <somcls.idl>
  24.  
  25. #include <idmgest.idl>
  26. #include <idmtext.idl>
  27.  
  28. interface IDMMixedResult : IDMTextResult, IDMGestureResult
  29. {
  30.   #ifdef __SOMIDL__
  31.   implementation
  32.   {
  33.     functionprefix = IDMMixed_;
  34.     filestem       = idmmixed;
  35.     majorversion   = 0;
  36.     minorversion   = 0;
  37.  
  38.     // Method Modifiers
  39.     idmresInitIdmResult: override;
  40.  
  41. #include "passthru.idl"
  42.  
  43.   };    /* implementation section  */
  44. #endif  /* ifdef __SOMIDL__        */
  45. };      /* interface section       */
  46.  
  47. #endif  /* ifdef __IDMTEXT_IDL__ */
  48.