[7297] Fixed profession spells sorting in trainer spell list at client.
[getmangos.git] / dep / ACE_wrappers / ace / LSOCK_Stream.inl
blob0d9421115f276c8a6e9dc8c1991a1bd1b5a92565
1 // -*- C++ -*-
2 //
3 // $Id: LSOCK_Stream.inl 80826 2008-03-04 14:51:23Z wotte $
5 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
7 // Sets both the file descriptors... Overrides handle from the base
8 // classes.
10 ACE_INLINE void
11 ACE_LSOCK_Stream::set_handle (ACE_HANDLE fd)
13   ACE_TRACE ("ACE_LSOCK_Stream::set_handle");
14   this->ACE_SOCK_Stream::set_handle (fd);
15   this->ACE_LSOCK::set_handle (fd);
18 ACE_INLINE ACE_HANDLE
19 ACE_LSOCK_Stream::get_handle (void) const
21   ACE_TRACE ("ACE_LSOCK_Stream::get_handle");
22   return this->ACE_SOCK_Stream::get_handle ();
25 ACE_END_VERSIONED_NAMESPACE_DECL