1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- //////////////////////////////////////////////////////////////////////////////
- //
- // (C) Copyright Ion Gaztanaga 2014-2014. Distributed under the Boost
- // Software License, Version 1.0. (See accompanying file
- // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
- //
- // See http://www.boost.org/libs/container for documentation.
- //
- //////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////////////////
- // Standard predeclarations
- //////////////////////////////////////////////////////////////////////////////
- BOOST_MOVE_STD_NS_BEG
- template<class T>
- class allocator;
- template<class T>
- struct less;
- template<class T>
- struct equal_to;
- template<class T1, class T2>
- struct pair;
- template<class T>
- struct char_traits;
- struct input_iterator_tag;
- struct forward_iterator_tag;
- struct bidirectional_iterator_tag;
- struct random_access_iterator_tag;
- template<class Container>
- class insert_iterator;
- struct allocator_arg_t;
- struct piecewise_construct_t;
- BOOST_MOVE_STD_NS_END
|