#include <ReceivedDataElementList.h>
Public Member Functions | |
ReceivedDataElementWithType (const DataSampleHeader &header, DataTypeWithAllocator *received_data, ACE_Recursive_Thread_Mutex *mx) | |
~ReceivedDataElementWithType () |
Definition at line 141 of file ReceivedDataElementList.h.
OpenDDS::DCPS::ReceivedDataElementWithType< DataTypeWithAllocator >::ReceivedDataElementWithType | ( | const DataSampleHeader & | header, | |
DataTypeWithAllocator * | received_data, | |||
ACE_Recursive_Thread_Mutex * | mx | |||
) | [inline] |
Definition at line 144 of file ReceivedDataElementList.h.
00145 : ReceivedDataElement(header, received_data, mx) 00146 { 00147 }
OpenDDS::DCPS::ReceivedDataElementWithType< DataTypeWithAllocator >::~ReceivedDataElementWithType | ( | ) | [inline] |
Definition at line 149 of file ReceivedDataElementList.h.
References OpenDDS::DCPS::ReceivedDataElement::mx_, and OpenDDS::DCPS::ReceivedDataElement::registered_data_.
00149 { 00150 ACE_GUARD(ACE_Recursive_Thread_Mutex, 00151 guard, 00152 *this->mx_) 00153 delete static_cast<DataTypeWithAllocator*> (registered_data_); 00154 }