12#include "vecmem/memory/memory_resource.hpp"
13#include "vecmem/vecmem_core_export.hpp"
59 void* allocate_bytes(std::size_t
bytes,
60 std::size_t alignment =
alignof(std::max_align_t));
75 void deallocate_bytes(
void*
p, std::size_t
bytes,
76 std::size_t alignment =
alignof(std::max_align_t));
92 T* allocate_object(std::size_t
n = 1);
105 template <
typename T>
106 void deallocate_object(
T*
p, std::size_t
n = 1);
119 template <
typename T,
typename...
Args>
131 template <
typename T>
132 void delete_object(
T*
p);
135 memory_resource& m_mem;
142#include "vecmem/memory/impl/allocator.ipp"
An allocator class that wraps a memory resource.
Definition allocator.hpp:37
Main namespace for the vecmem classes/functions.
Definition atomic_ref.hpp:16
std::vector< T, vecmem::polymorphic_allocator< T > > vector
Alias type for vectors with our polymorphic allocator.
Definition vector.hpp:35