combine
The class template combination
takes an InputFilter/OutputFilter pair or a Source/Sink pair and yields a Filter or Device which performs input using the first component and output using the second. The function template combine
takes an InputFilter/OutputFilter pair or a Source/Sink pair and returns an appropriate specialization of combination
.
<boost/iostreams/combine.hpp>
namespace boost { namespace iostreams { template<typename In, typename Out> class combination; template<typename In, typename Out> combination<In, Out> combine(const In& in, const Out& out); } } // End namespace boost::io
© Copyright 2008 CodeRage, LLC
© Copyright 2004-2007 Jonathan Turkanis
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)