Weakly typed data buffer that couples together a generic pointer with the size and type information of the memory it points to.
Definition at line 69 of file ChannelPacketTypes.hpp.
Public Member Functions | |
GenericData () | |
template<typename T > | |
GenericData (T *data) | |
GenericData (void *data, size_t size) | |
template<typename T > | |
T * | getData () const |
void * | getPointer () const |
size_t | size () const |
|
inline |
Default construct to point to nullptr.
Definition at line 75 of file ChannelPacketTypes.hpp.
|
inline |
Construct to point to data with only size information and no type information.
data | the pointer to the data |
size | the size of the data |
Definition at line 86 of file ChannelPacketTypes.hpp.
|
inline |
Construct to point to data of the given type.
T | the type to point to |
data | the pointer |
Definition at line 100 of file ChannelPacketTypes.hpp.
|
inline |
Get a pointer to the data with the given type.
if | the type T is incompatible with the value. |
T | the type of data |
Definition at line 129 of file ChannelPacketTypes.hpp.
Referenced by dw::framework::CodecPacket::CodecPacket(), dw::framework::EgomotionStateHandlePacket::EgomotionStateHandlePacket(), dw::framework::FeatureArrayPacket::FeatureArrayPacket(), dw::framework::FeatureHistoryArrayPacket::FeatureHistoryArrayPacket(), dw::framework::FeatureNccScoresPacket::FeatureNccScoresPacket(), dw::framework::ImageHandlePacket::ImageHandlePacket(), dw::framework::LatencyPacket::LatencyPacket(), dw::framework::PointCloudChannelPacket::PointCloudChannelPacket(), dw::framework::PyramidImagePacket::PyramidImagePacket(), and dw::framework::SensorServiceNodeRawDataPacket::SensorServiceNodeRawDataPacket().
|
inline |
Get the pointer to the data.
Definition at line 157 of file ChannelPacketTypes.hpp.
Referenced by dw::framework::ManagedPortInput< T >::takeOwnership().
|
inline |
Get the size of the data pointed to.
Definition at line 112 of file ChannelPacketTypes.hpp.