File indexing completed on 2026-03-31 08:04:58
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011 #ifndef BOOST_INTERPROCESS_CONTAINERS_ALLOCATION_TYPE_HPP
0012 #define BOOST_INTERPROCESS_CONTAINERS_ALLOCATION_TYPE_HPP
0013
0014 #ifndef BOOST_CONFIG_HPP
0015 # include <boost/config.hpp>
0016 #endif
0017 0018 ">#
0019 #if defined(BOOST_HAS_PRAGMA_ONCE)
0020 # pragma once
0021 #endif
0022
0023 #include <boost/interprocess/detail/config_begin.hpp>
0024 #include <boost/container/detail/allocation_type.hpp>
0025
0026 namespace boost {
0027 namespace interprocess {
0028
0029 #if !defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
0030 using boost::container::allocation_type;
0031 #endif
0032 static const allocation_type allocate_new = boost::container::allocate_new;
0033 static const allocation_type expand_fwd = boost::container::expand_fwd;
0034 static const allocation_type expand_bwd = boost::container::expand_bwd;
0035 static const allocation_type shrink_in_place = boost::container::shrink_in_place;
0036 static const allocation_type try_shrink_in_place= boost::container::try_shrink_in_place;
0037 static const allocation_type nothrow_allocation = boost::container::nothrow_allocation;
0038 static const allocation_type zero_memory = boost::container::zero_memory;
0039
0040 }
0041 }
0042
0043 #include <boost/interprocess/detail/config_end.hpp>
0044
0045 #endif