mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 13:37:05 +00:00
16 lines
340 B
C++
16 lines
340 B
C++
// -*- C++ -*-
|
|
//
|
|
// $Id: Lock_Adapter_T.inl 80826 2008-03-04 14:51:23Z wotte $
|
|
|
|
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
|
|
|
template <class ACE_LOCKING_MECHANISM>
|
|
ACE_INLINE
|
|
ACE_Lock_Adapter<ACE_LOCKING_MECHANISM>::ACE_Lock_Adapter (
|
|
ACE_LOCKING_MECHANISM &lock)
|
|
: lock_ (&lock),
|
|
delete_lock_ (false)
|
|
{
|
|
}
|
|
|
|
ACE_END_VERSIONED_NAMESPACE_DECL
|