12#ifndef SST_CORE_SERIALIZATION_IMPL_UNPACKER_H
13#define SST_CORE_SERIALIZATION_IMPL_UNPACKER_H
15#ifndef SST_INCLUDING_SERIALIZER_H
17 "The header file sst/core/serialization/impl/unpacker.h should not be directly included as it is not part of the stable public API. The file is included in sst/core/serialization/serializer.h"
20#include "sst/core/serialization/impl/ser_buffer_accessor.h"
25namespace SST::Core::Serialization::pvt {
33 T* bufptr = ser_buffer_accessor::next<T>();
44 void unpack_string(std::string& str);
void unpack_buffer(void *buf, size_t size)
unpack_buffer
Definition serializer.cc:23