Update contrib.
1 // (C) Copyright Jonathan Turkanis 2003.
2 // Distributed under the Boost Software License, Version 1.0. (See accompanying
3 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.)
5 // See http://www.boost.org/libs/iostreams for documentation.
7 #ifndef BOOST_IOSTREAMS_FLUSH_HPP_INCLUDED
8 #define BOOST_IOSTREAMS_FLUSH_HPP_INCLUDED
10 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
14 #include <boost/config.hpp> // DEDUCED_TYPENAME, MSVC.
15 #include <boost/detail/workaround.hpp>
16 #include <boost/iostreams/detail/dispatch.hpp>
17 #include <boost/iostreams/detail/streambuf.hpp>
18 #include <boost/iostreams/detail/wrap_unwrap.hpp>
19 #include <boost/iostreams/operations_fwd.hpp>
20 #include <boost/iostreams/traits.hpp>
21 #include <boost/mpl/if.hpp>
24 #include <boost/iostreams/detail/config/disable_warnings.hpp>
26 namespace boost { namespace iostreams {
31 struct flush_device_impl;
34 struct flush_filter_impl;
36 } // End namespace detail.
40 { return detail::flush_device_impl<T>::flush(detail::unwrap(t)); }
42 template<typename T, typename Sink>
43 bool flush(T& t, Sink& snk)
44 { return detail::flush_filter_impl<T>::flush(detail::unwrap(t), snk); }
48 //------------------Definition of flush_device_impl---------------------------//
51 struct flush_device_impl
56 BOOST_DEDUCED_TYPENAME
58 T, ostream_tag, streambuf_tag, flushable_tag, any_tag
65 struct flush_device_impl<ostream_tag> {
67 static bool flush(T& t)
68 { return t.rdbuf()->BOOST_IOSTREAMS_PUBSYNC() == 0; }
72 struct flush_device_impl<streambuf_tag> {
74 static bool flush(T& t)
75 { return t.BOOST_IOSTREAMS_PUBSYNC() == 0; }
79 struct flush_device_impl<flushable_tag> {
81 static bool flush(T& t) { return t.flush(); }
85 struct flush_device_impl<any_tag> {
87 static bool flush(T&) { return true; }
90 //------------------Definition of flush_filter_impl---------------------------//
93 struct flush_filter_impl
98 BOOST_DEDUCED_TYPENAME
100 T, flushable_tag, any_tag
107 struct flush_filter_impl<flushable_tag> {
108 template<typename T, typename Sink>
109 static bool flush(T& t, Sink& snk) { return t.flush(snk); }
113 struct flush_filter_impl<any_tag> {
114 template<typename T, typename Sink>
115 static bool flush(T&, Sink&) { return false; }
118 } // End namespace detail.
120 } } // End namespaces iostreams, boost.
122 #include <boost/iostreams/detail/config/enable_warnings.hpp>
124 #endif // #ifndef BOOST_IOSTREAMS_FLUSH_HPP_INCLUDED