sl@0: // (C) Copyright Jonathan Turkanis 2003. sl@0: // Distributed under the Boost Software License, Version 1.0. (See accompanying sl@0: // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.) sl@0: sl@0: // See http://www.boost.org/libs/iostreams for documentation. sl@0: sl@0: // Contains constants used by library. sl@0: sl@0: #ifndef BOOST_IOSTREAMS_CONSTANTS_HPP_INCLUDED sl@0: #define BOOST_IOSTREAMS_CONSTANTS_HPP_INCLUDED sl@0: sl@0: #if defined(_MSC_VER) && (_MSC_VER >= 1020) sl@0: # pragma once sl@0: #endif sl@0: sl@0: #ifndef BOOST_IOSTREAMS_DEFAULT_DEVICE_BUFFER_SIZE sl@0: # define BOOST_IOSTREAMS_DEFAULT_DEVICE_BUFFER_SIZE 4096 sl@0: #endif sl@0: sl@0: #ifndef BOOST_IOSTREAMS_DEFAULT_FILTER_BUFFER_SIZE sl@0: # define BOOST_IOSTREAMS_DEFAULT_FILTER_BUFFER_SIZE 128 sl@0: #endif sl@0: sl@0: #ifndef BOOST_IOSTREAMS_DEFAULT_PBACK_BUFFER_SIZE sl@0: # define BOOST_IOSTREAMS_DEFAULT_PBACK_BUFFER_SIZE 4 sl@0: #endif sl@0: sl@0: #include // streamsize. sl@0: sl@0: namespace boost { namespace iostreams { sl@0: sl@0: const std::streamsize default_device_buffer_size = sl@0: BOOST_IOSTREAMS_DEFAULT_DEVICE_BUFFER_SIZE; sl@0: const std::streamsize default_filter_buffer_size = sl@0: BOOST_IOSTREAMS_DEFAULT_FILTER_BUFFER_SIZE; sl@0: const std::streamsize default_pback_buffer_size = sl@0: BOOST_IOSTREAMS_DEFAULT_PBACK_BUFFER_SIZE; sl@0: sl@0: } } // End namespaces iostreams, boost. sl@0: sl@0: #endif // #ifndef BOOST_IOSTREAMS_CONSTANTS_HPP_INCLUDED