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

  1. #ifndef _IDDECCNV_INL_
  2. #define _IDDECCNV_INL_ 0
  3. /*******************************************************************************
  4. * FILE NAME: iddeccnv.inl                                                      *
  5. *                                                                              *
  6. * DESCRIPTION:                                                                 *
  7. *   This file contains the definition of the inline functions for the          *
  8. *   classes declared in iddeccnv.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 _IDDECCNV_
  19.   #undef  _IDDECCNV_INL_
  20.   #define _IDDECCNV_INL_ 1
  21.   #include <iddeccnv.hpp>
  22. #endif
  23.  
  24. #if _IDDECCNV_INL_
  25.   #define inline
  26. #endif
  27.  
  28. inline IString IDDEClientConversation :: application ( ) const
  29. {
  30.    return strClApplication;
  31. }
  32.  
  33. inline IString IDDEClientConversation :: topic ( ) const
  34. {
  35.    return strClTopic;
  36. }
  37.  
  38. inline IBase::Boolean IDDEClientConversation :: isCaseSensitive ( ) const
  39. {
  40.    return fClCaseSensitive;
  41. }
  42.  
  43. inline IWindowHandle IDDEClientConversation :: serverHandle ( ) const
  44. {
  45.    return wndhClServer;
  46. }
  47.  
  48. inline IBase::Boolean IDDEClientConversation :: inConversation ( ) const
  49. {
  50.    if (serverHandle())
  51.       return true;
  52.    else
  53.       return false;
  54. }
  55.  
  56. inline IWindowHandle IDDEClientConversation :: clientHandle ( ) const
  57. {
  58.    return wndhClClient;
  59. }
  60.  
  61. inline IDDEClosedConversationSet& IDDEClientConversation :: closedConversations ( ) const
  62. {
  63.    return *pClsdConvSetCl;
  64. }
  65.  
  66. inline IDDETransactionQueue& IDDEClientConversation :: transactions ( ) const
  67. {
  68.    return *pTransQCl;
  69. }
  70.  
  71. inline IDDEFormatSet& IDDEClientConversation :: formats ( ) const
  72. {
  73.    return *pFormatSetCl;
  74. }
  75.  
  76. inline IDDEItemAtomSet& IDDEClientConversation :: itemAtoms ( ) const
  77. {
  78.    return *pItemAtomSetCl;
  79. }
  80.  
  81. inline unsigned long IDDEClientConversation :: queueHandle ( ) const
  82. {
  83.    return ulClQHandle;
  84. }
  85.  
  86. #endif // _IDDECCNV_INL_
  87.  
  88.