vecmem 1.14.0
Loading...
Searching...
No Matches
buffer_type.hpp
1/* VecMem project, part of the ACTS project (R&D line)
2 *
3 * (c) 2023 CERN for the benefit of the ACTS project
4 *
5 * Mozilla Public License Version 2.0
6 */
7#pragma once
8
9namespace vecmem {
10namespace data {
11
13enum class buffer_type {
14
15 fixed_size = 0,
16 resizable = 1
17
18}; // enum class buffer_type
19
20} // namespace data
21} // namespace vecmem
buffer_type
"Overall type" for a buffer object
Definition buffer_type.hpp:13
@ fixed_size
The buffer has a fixed number of elements.
@ resizable
The buffer is resizable/expandable.
Main namespace for the vecmem classes/functions.
Definition atomic_ref.hpp:16