123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- //////////////////////////////////////////////////////////////////////////////
- //
- // (C) Copyright Ion Gaztanaga 2014-2015. 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/interprocess for documentation.
- //
- //////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////////////////
- // Standard predeclarations
- //////////////////////////////////////////////////////////////////////////////
- BOOST_MOVE_STD_NS_BEG
- struct input_iterator_tag;
- struct forward_iterator_tag;
- struct bidirectional_iterator_tag;
- struct random_access_iterator_tag;
- template<class T>
- struct char_traits;
- // Compiler bug workaround. Previous versions (<= VC11)
- // used dummy virtual functions
- template<class CharT, class Traits>
- class basic_ostream;
- template<class CharT, class Traits>
- class basic_istream;
- BOOST_MOVE_STD_NS_END
|