Changes to attempt to silence bcc64x
[ACE_TAO.git] / ACE / ace / Message_Block_T.inl
blobaf729e9f45079f8a762004a6e087d40e555cd9c9
1 // -*- C++ -*-
2 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
4 template<class ACE_LOCK> ACE_INLINE
5 ACE_Locked_Data_Block<ACE_LOCK>::ACE_Locked_Data_Block ()
7   this->locking_strategy_ = &this->lock_;
10 template<class ACE_LOCK> ACE_INLINE
11 ACE_Locked_Data_Block<ACE_LOCK>::
12 ACE_Locked_Data_Block (size_t size,
13                        ACE_Message_Block::ACE_Message_Type msg_type,
14                        const char *msg_data,
15                        ACE_Allocator *allocator_strategy,
16                        ACE_Message_Block::Message_Flags flags,
17                        ACE_Allocator *data_block_allocator)
18   : ACE_Data_Block (size,
19                     msg_type,
20                     msg_data,
21                     allocator_strategy,
22                     &lock_,
23                     flags,
24                     data_block_allocator)
28 ACE_END_VERSIONED_NAMESPACE_DECL