Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:38:27

0001 //////////////////////////////////////////////////////////////////////////////
0002 //
0003 // (C) Copyright Ion Gaztanaga 2014-2015. Distributed under the Boost
0004 // Software License, Version 1.0. (See accompanying file
0005 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0006 //
0007 // See http://www.boost.org/libs/interprocess for documentation.
0008 //
0009 //////////////////////////////////////////////////////////////////////////////
0010 #ifndef BOOST_INTERPROCESS_DETAIL_STD_FWD_HPP
0011 #define BOOST_INTERPROCESS_DETAIL_STD_FWD_HPP
0012 
0013 #ifndef BOOST_CONFIG_HPP
0014 #  include <boost/config.hpp>
0015 #endif
0016 #
0017 #if defined(BOOST_HAS_PRAGMA_ONCE)
0018 #  pragma once
0019 #endif
0020 
0021 //////////////////////////////////////////////////////////////////////////////
0022 //                        Standard predeclarations
0023 //////////////////////////////////////////////////////////////////////////////
0024 
0025 #include <boost/move/detail/std_ns_begin.hpp>
0026 BOOST_MOVE_STD_NS_BEG
0027 
0028 struct input_iterator_tag;
0029 struct forward_iterator_tag;
0030 struct bidirectional_iterator_tag;
0031 struct random_access_iterator_tag;
0032 
0033 template<class T>
0034 struct char_traits;
0035 
0036 #if defined(BOOST_MSVC) && (BOOST_MSVC >= 1800) &&defined(BOOST_DINKUMWARE_STDLIB)
0037 #define BOOST_INTERPROCESS_STD_FWD_MSVC_IOS_BUG
0038 // Compiler bug workaround. Previous versions (<= VC11)
0039 // used dummy virtual functions
0040 #  pragma vtordisp(push, 2)
0041 #endif
0042 
0043 template<class CharT, class Traits>
0044 class basic_ostream;
0045 
0046 template<class CharT, class Traits>
0047 class basic_istream;
0048 
0049 #ifdef BOOST_INTERPROCESS_STD_FWD_MSVC_IOS_BUG
0050 #  pragma vtordisp(pop)
0051 #  undef BOOST_INTERPROCESS_STD_FWD_MSVC_IOS_BUG
0052 #endif
0053 
0054 BOOST_MOVE_STD_NS_END
0055 #include <boost/move/detail/std_ns_end.hpp>
0056 
0057 #endif //#ifndef BOOST_INTERPROCESS_DETAIL_STD_FWD_HPP