Use override/default for RTPortableServer
[ACE_TAO.git] / ACE / ace / TLI.inl
blobb113d3cef2d94249d0460398d12dc8fe888b921e
1 // -*- C++ -*-
2 #include "ace/TLI.h"
4 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
6 ACE_INLINE
7 int
8 ACE_TLI::look () const
10   ACE_TRACE ("ACE_TLI::look");
11   return ACE_OS::t_look (this->get_handle ());
14 ACE_INLINE
15 int
16 ACE_TLI::rcvdis (struct t_discon *discon) const
18   ACE_TRACE ("ACE_TLI::rcvdis");
19   return ACE_OS::t_rcvdis (this->get_handle (), discon);
22 ACE_INLINE
23 int
24 ACE_TLI::snddis (struct t_call *call) const
26   ACE_TRACE ("ACE_TLI::snddis");
27   return ACE_OS::t_snddis (this->get_handle (), call);
30 ACE_INLINE
31 int
32 ACE_TLI::rcvrel () const
34   ACE_TRACE ("ACE_TLI::rcvrel");
35   return ACE_OS::t_rcvrel (this->get_handle ());
38 ACE_INLINE
39 int
40 ACE_TLI::sndrel () const
42   ACE_TRACE ("ACE_TLI::sndrel");
43   return ACE_OS::t_sndrel (this->get_handle ());
46 ACE_END_VERSIONED_NAMESPACE_DECL