File indexing completed on 2025-01-18 09:30:13
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011 #ifndef BOOST_CONTAINER_DETAIL_STD_FWD_HPP
0012 #define BOOST_CONTAINER_DETAIL_STD_FWD_HPP
0013
0014 #ifndef BOOST_CONFIG_HPP
0015 # include <boost/config.hpp>
0016 #endif
0017
0018 #if defined(BOOST_HAS_PRAGMA_ONCE)
0019 # pragma once
0020 #endif
0021
0022
0023
0024
0025
0026 #include <boost/move/detail/std_ns_begin.hpp>
0027 BOOST_MOVE_STD_NS_BEG
0028
0029 template<class T>
0030 class allocator;
0031
0032 template<class T>
0033 struct less;
0034
0035 template<class T>
0036 struct equal_to;
0037
0038 template<class T1, class T2>
0039 struct pair;
0040
0041 template<class T>
0042 struct char_traits;
0043
0044 struct input_iterator_tag;
0045 struct forward_iterator_tag;
0046 struct bidirectional_iterator_tag;
0047 struct random_access_iterator_tag;
0048
0049 template<class Container>
0050 class insert_iterator;
0051
0052 struct allocator_arg_t;
0053
0054 struct piecewise_construct_t;
0055
0056 template <class Ptr>
0057 struct pointer_traits;
0058
0059 BOOST_MOVE_STD_NS_END
0060 #include <boost/move/detail/std_ns_end.hpp>
0061
0062 #endif