// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "alloc.h" #include <algorithm> namespace embree { class Device; template<typename T, typename allocator> class vector_t { … }; /*! vector class that performs standard allocations */ vector; /*! vector class that performs aligned allocations */ avector; /*! vector class that performs OS allocations */ ovector; /*! vector class with externally managed data buffer */ evector; }