blob: 09e311d76a2b5fd958346ccdad98601796c8e93e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* -*- C++ -*- */
// $Id$
// MEM_Connector.i
// Establish a connection.
ASYS_INLINE ACE_MEM_IO::Signal_Strategy
ACE_MEM_Connector::preferred_strategy (void) const
{
return this->preferred_strategy_;
}
ASYS_INLINE void
ACE_MEM_Connector::preferred_strategy (ACE_MEM_IO::Signal_Strategy strategy)
{
this->preferred_strategy_ = strategy;
}
ASYS_INLINE ACE_MEM_SAP::MALLOC_OPTIONS &
ACE_MEM_Connector::malloc_options (void)
{
return this->malloc_options_;
}
|