/** * @file mix_cc/shm/container/vector.h * @brief 共享内存vector * @author Cat (null.null.null@qq.com) * @version 0.1 * @date 2021-05-07 * * Copyright: Baosight Co. Ltd. * DO NOT COPY/USE WITHOUT PERMISSION * */ #pragma once #include #include #include namespace mix_cc { namespace shm { /** * @brief 共享内存vector * @tparam T * @tparam Segment * @tparam Options */ template using Vector = bip::vector, Options>; /** * @brief 共享内存vector构造器 * @tparam T * @tparam Segment * @tparam Options */ template class VectorBuilder : public StlBuilder, T, Segment> {}; } // namespace shm } // namespace mix_cc