[7297] Fixed profession spells sorting in trainer spell list at client.
[getmangos.git] / dep / ACE_wrappers / ace / IPC_SAP.inl
blob5e80486902a53ccf47e81e5e734c3133738aacea
1 // -*- C++ -*-
2 //
3 // $Id: IPC_SAP.inl 80826 2008-03-04 14:51:23Z wotte $
5 #include "ace/OS_NS_stropts.h"
7 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
9 ACE_INLINE
10 ACE_IPC_SAP::~ACE_IPC_SAP (void)
12   // ACE_TRACE ("ACE_IPC_SAP::~ACE_IPC_SAP");
15 ACE_INLINE ACE_HANDLE
16 ACE_IPC_SAP::get_handle (void) const
18   ACE_TRACE ("ACE_IPC_SAP::get_handle");
19   return this->handle_;
22 // Used to set the underlying handle_.
24 ACE_INLINE void
25 ACE_IPC_SAP::set_handle (ACE_HANDLE handle)
27   ACE_TRACE ("ACE_IPC_SAP::set_handle");
28   this->handle_ = handle;
31 // Provides access to the ACE_OS::ioctl system call.
33 ACE_INLINE int
34 ACE_IPC_SAP::control (int cmd, void *arg) const
36   ACE_TRACE ("ACE_IPC_SAP::control");
37   return ACE_OS::ioctl (this->handle_, cmd, arg);
40 ACE_END_VERSIONED_NAMESPACE_DECL