home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / include / icnrcol.inl < prev    next >
Encoding:
Text File  |  1996-02-22  |  1.9 KB  |  45 lines

  1. #ifndef _ICNRCOL_INL_
  2. #define _ICNRCOL_INL_ 0
  3. /*******************************************************************************
  4. * FILE NAME: icnrcol.inl                                                       *
  5. *                                                                              *
  6. * DESCRIPTION:                                                                 *
  7. *   This file contains the definition of the inline functions for the          *
  8. *   classes declared in icnrcol.hpp.                                           *
  9. *                                                                              *
  10. * COPYRIGHT:                                                                   *
  11. *   IBM Open Class Library                                                     *
  12. *   (C) Copyright International Business Machines Corporation 1992, 1996       *
  13. *   Licensed Material - Program-Property of IBM - All Rights Reserved.         *
  14. *   US Government Users Restricted Rights - Use, duplication, or disclosure    *
  15. *   restricted by GSA ADP Schedule Contract with IBM Corp.                     *
  16. *                                                                              *
  17. *******************************************************************************/
  18. #ifndef _ICNRCOL_
  19.   #undef  _ICNRCOL_INL_
  20.   #define _ICNRCOL_INL_ 1
  21.   #include <icnrcol.hpp>
  22. #endif
  23.  
  24. #if _ICNRCOL_INL_
  25.   #define inline
  26. #endif
  27.  
  28. inline _FIELDINFO* IContainerColumn :: columnInfo() const
  29.   {return pfieldinfoCl; }
  30.  
  31. inline IContainerColumn& IContainerColumn :: setColumnInfo(_FIELDINFO* pfieldinfo)
  32.   {pfieldinfoCl = pfieldinfo;  return *this;}
  33.  
  34. inline IContainerColumn& IContainerColumn :: setContainer(IContainerControl* pcnrctl)
  35.    {pcnrctlCl = pcnrctl; return *this; }
  36.  
  37. inline IContainerControl* IContainerColumn :: container() const
  38.   { return pcnrctlCl; }
  39.  
  40. inline unsigned long IContainerColumn::helpId ( ) const
  41. { return ulHelpId; }
  42.  
  43. #endif // _ICNRCOL_INL_
  44.  
  45.