mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 13:37:05 +00:00
(based on zergtmn's repo commit 3a8c259) (based on zergtmn's repo commit 946c1a8) Signed-off-by: VladimirMangos <vladimir@getmangos.com>
21 lines
448 B
C++
21 lines
448 B
C++
// -*- C++ -*-
|
|
//
|
|
// $Id: MEM_Connector.inl 91688 2010-09-09 11:21:50Z johnnyw $
|
|
|
|
// Establish a connection.
|
|
|
|
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
|
|
|
ACE_INLINE ACE_MEM_IO::Signal_Strategy
|
|
ACE_MEM_Connector::preferred_strategy (void) const
|
|
{
|
|
return this->preferred_strategy_;
|
|
}
|
|
|
|
ACE_INLINE void
|
|
ACE_MEM_Connector::preferred_strategy (ACE_MEM_IO::Signal_Strategy strategy)
|
|
{
|
|
this->preferred_strategy_ = strategy;
|
|
}
|
|
|
|
ACE_END_VERSIONED_NAMESPACE_DECL
|