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

  1. //
  2. //  idmcoll.idl
  3. //
  4. //  CLASS: IDMCollectResult
  5. //
  6. //  CLASS HIERARCHY:
  7. //
  8. //     SOMObject
  9. //       └── IDMResult
  10. //             └── IDMCollectResult
  11. //
  12. //  DESCRIPTION:
  13. //
  14. //     Input Data Collection class.
  15. //
  16. #ifndef __IDMCOLLECT_IDL__
  17. #define __IDMCOLLECT_IDL__
  18.  
  19. #include <somcls.idl>
  20.  
  21. #include <idmres.idl>
  22.  
  23. interface IDMCollectResult : IDMResult
  24. {
  25.  
  26.   #ifdef __SOMIDL__
  27.   implementation
  28.   {
  29.     releaseorder: idmresGetStrokeType;
  30.  
  31.     functionprefix = IDMColl_;
  32.     filestem       = idmcoll;
  33.     majorversion   = 0;
  34.     minorversion   = 0;
  35.  
  36.     // Method Modifiers
  37.     idmresInitIdmResult: override;
  38.  
  39.     // Passthru sections
  40. #include "passthru.idl"
  41.  
  42.  
  43.   };    /* implementation section  */
  44.   #endif  /* ifdef __SOMIDL__ */
  45. };      /* interface section       */
  46.  
  47. #endif  /* ifdef __IDMCOLLECT_IDL__ */
  48.