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

  1. #ifndef _IDDETSRV_INL_
  2. #define _IDDETSRV_INL_ 0
  3. /*******************************************************************************
  4. * FILE NAME: iddetsrv.inl                                                      *
  5. *                                                                              *
  6. * DESCRIPTION:                                                                 *
  7. *   This file contains the definition of the inline functions for the          *
  8. *   classes declared in iddetsrv.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 _IDDETSRV_
  19.   #undef  _IDDETSRV_INL_
  20.   #define _IDDETSRV_INL_ 1
  21.   #include <iddetsrv.hpp>
  22. #endif
  23.  
  24. #if _IDDETSRV_INL_
  25.   #define inline
  26. #endif
  27.  
  28. inline IWindowHandle IDDETopicServer :: serverHandle ( ) const
  29. {
  30.    return wndhClServer;
  31. }
  32.  
  33. inline IString IDDETopicServer :: application ( ) const
  34. {
  35.    return strClApplication;
  36. }
  37.  
  38. inline IString IDDETopicServer :: topic ( ) const
  39. {
  40.    return strClTopic;
  41. }
  42.  
  43. inline IDDEServerConversationSet& IDDETopicServer :: closedConversations ( ) const
  44. {
  45.    return *pClsdConvSetCl;
  46. }
  47.  
  48. inline IDDEServerConversationSet& IDDETopicServer :: conversations ( ) const
  49. {
  50.    return *pConvSetCl;
  51. }
  52.  
  53. inline IDDEServerHotLinkItemSet& IDDETopicServer :: hotLinkItems ( ) const
  54. {
  55.    return *pHLItemSetCl;
  56. }
  57.  
  58. inline IDDEFormatSet& IDDETopicServer :: formats ( ) const
  59. {
  60.    return *pFormatSetCl;
  61. }
  62.  
  63. inline IDDEItemAtomSet& IDDETopicServer :: itemAtoms ( ) const
  64. {
  65.    return *pItemAtomSetCl;
  66. }
  67.  
  68. inline unsigned long IDDETopicServer :: queueHandle ( ) const
  69. {
  70.    return ulClQHandle;
  71. }
  72.  
  73. #endif // _IDDETSRV_INL_
  74.