#include "tao/Synch_Queued_Message.h"#include "tao/debug.h"#include "tao/ORB_Core.h"#include "ace/Malloc_T.h"#include "ace/Message_Block.h"
Go to the source code of this file.
Functions | |
| ACE_RCSID (tao, Synch_Queued_Message,"$Id: Synch_Queued_Message.cpp 81839 2008-06-05 11:58:32Z elliott_c $") 1 TAO_Synch_Queued_Message | |
| ACE_RCSID | ( | tao | , | |
| Synch_Queued_Message | , | |||
| "$Id: Synch_Queued_Message.cpp 81839 2008-06-05 11:58:32Z elliott_c $" | ||||
| ) |
Definition at line 10 of file Synch_Queued_Message.cpp.
00012 : Synch_Queued_Message.cpp 81839 2008-06-05 11:58:32Z elliott_c $") 00013 00014 TAO_BEGIN_VERSIONED_NAMESPACE_DECL 00015 00016 TAO_Synch_Queued_Message::TAO_Synch_Queued_Message ( 00017 const ACE_Message_Block *contents, 00018 TAO_ORB_Core *oc, 00019 ACE_Allocator *alloc, 00020 bool is_heap_allocated) 00021 : TAO_Queued_Message (oc, alloc, is_heap_allocated) 00022 , contents_ (const_cast<ACE_Message_Block*> (contents)) 00023 , current_block_ (contents_) 00024 , own_contents_ (is_heap_allocated) 00025 { 00026 }
1.6.1