[7297] Fixed profession spells sorting in trainer spell list at client.
[getmangos.git] / dep / ACE_wrappers / ace / Message_Block_T.inl
blob58c89c641ad6346409f53d35358d4e0550f32e96
1 // -*- C++ -*-
2 //
3 // $Id: Message_Block_T.inl 80826 2008-03-04 14:51:23Z wotte $
5 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
7 template<class ACE_LOCK> ACE_INLINE
8 ACE_Locked_Data_Block<ACE_LOCK>::ACE_Locked_Data_Block (void)
10   this->locking_strategy_ = &this->lock_;
13 template<class ACE_LOCK> ACE_INLINE
14 ACE_Locked_Data_Block<ACE_LOCK>::
15 ACE_Locked_Data_Block (size_t size,
16                        ACE_Message_Block::ACE_Message_Type msg_type,
17                        const char *msg_data,
18                        ACE_Allocator *allocator_strategy,
19                        ACE_Message_Block::Message_Flags flags,
20                        ACE_Allocator *data_block_allocator)
21   : ACE_Data_Block (size,
22                     msg_type,
23                     msg_data,
24                     allocator_strategy,
25                     &lock_,
26                     flags,
27                     data_block_allocator)
31 ACE_END_VERSIONED_NAMESPACE_DECL