Update contrib.
1 // (C) Copyright Jonathan Turkanis 2004.
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 // Inspired by Daryle Walker's nullbuf from his More I/O submission.
9 #ifndef BOOST_IOSTREAMS_NULL_HPP_INCLUDED
10 #define BOOST_IOSTREAMS_NULL_HPP_INCLUDED
12 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
16 #include <boost/iostreams/categories.hpp>
17 #include <boost/iostreams/detail/ios.hpp> // openmode, streamsize.
18 #include <boost/iostreams/positioning.hpp>
20 namespace boost { namespace iostreams {
22 template<typename Ch, typename Mode>
23 class basic_null_device {
31 std::streamsize read(Ch*, std::streamsize) { return 0; }
32 std::streamsize write(const Ch*, std::streamsize n) { return n; }
33 stream_offset seek( stream_offset, BOOST_IOS::seekdir,
35 BOOST_IOS::in | BOOST_IOS::out )
37 void close(BOOST_IOS::openmode = BOOST_IOS::in | BOOST_IOS::out) { }
41 struct basic_null_source : private basic_null_device<Ch, input> {
43 typedef source_tag category;
44 using basic_null_device<Ch, input>::read;
45 using basic_null_device<Ch, input>::close;
48 typedef basic_null_source<char> null_source;
49 typedef basic_null_source<wchar_t> wnull_source;
52 struct basic_null_sink : private basic_null_device<Ch, output> {
54 typedef sink_tag category;
55 using basic_null_device<Ch, output>::write;
56 using basic_null_device<Ch, output>::close;
59 typedef basic_null_sink<char> null_sink;
60 typedef basic_null_sink<wchar_t> wnull_sink;
62 } } // End namespaces iostreams, boost.
64 #endif // #ifndef BOOST_IOSTREAMS_NULL_HPP_INCLUDED