MCPcopy Create free account
hub / github.com/AimRT/AimRT / BufferArray

Method BufferArray

src/interface/aimrt_module_cpp_interface/util/buffer.h:45–48  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

43class BufferArray {
44 public:
45 explicit BufferArray(
46 const aimrt_buffer_array_allocator_t* allocator = SimpleBufferArrayAllocator::NativeHandle())
47 : buffer_array_(aimrt_buffer_array_t{.data = nullptr, .len = 0, .capacity = 0}),
48 allocator_ptr_(allocator) {}
49
50 explicit BufferArray(BufferArrayAllocatorRef allocator)
51 : buffer_array_(aimrt_buffer_array_t{.data = nullptr, .len = 0, .capacity = 0}),

Callers

nothing calls this directly

Calls 1

NativeHandleMethod · 0.45

Tested by

no test coverage detected