home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cset21v1.zip / IBMCPP / IBMCLASS / IDMITEM.INL < prev    next >
Text File  |  1993-10-22  |  2KB  |  55 lines

  1. #ifndef _IDMITEM_INL_
  2.   #define _IDMITEM_INL_ 0
  3. /*******************************************************************************
  4. * FILE NAME: idmitem.inl                                                       *
  5. *                                                                              *
  6. * DESCRIPTION:                                                                 *
  7. *   This file contains the definition of the inline functions for the          *
  8. *   class(es) declared in idmitem.hpp.                                         *
  9. *                                                                              *
  10. * COPYRIGHT:                                                                   *
  11. *   Licensed Materials - Property of IBM                                       *
  12. *   (C) Copyright IBM Corporation 1992, 1993                                   *
  13. *   All Rights Reserved                                                        *
  14. *   US Government Users Restricted Rights - Use, duplication, or               *
  15. *   disclosure                                                                 *
  16. *   restricted by GSA ADP Schedule Contract with IBM Corp.                     *
  17. *                                                                              *
  18. *******************************************************************************/
  19. #ifndef _IDMITEM_
  20.   #undef  _IDMITEM_INL_
  21.   #define _IDMITEM_INL_ 1
  22.   #include <idmitem.hpp>
  23. #endif
  24.  
  25.  
  26. #if _IDMITEM_INL_
  27.   #define inline
  28. #endif
  29.  
  30.  
  31. /*------------------------------------------------------------------------------
  32. | Inlines for IDMItem                                                          |
  33. ------------------------------------------------------------------------------*/
  34. inline unsigned IDMItem :: renderer() const
  35. {
  36.   return(this->rendererPosition);
  37. }
  38.  
  39. inline IString IDMItem :: selectedRMF() const
  40. {
  41.   return(this->strSelectedRMF);
  42. }
  43.  
  44. inline IDM::DropIndicator IDMItem :: dropStatus() const
  45. {
  46.   return(this->drpStatus);
  47. }
  48.  
  49. inline Boolean IDMItem::hasImage() const
  50. {
  51.   return (!(!this->pIDMImage));
  52. }
  53.  
  54. #endif // _IDMITEM_INL_
  55.