os/ossrv/ossrv_pub/boost_apis/boost/iostreams/constants.hpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/ossrv_pub/boost_apis/boost/iostreams/constants.hpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,41 @@
     1.4 +// (C) Copyright Jonathan Turkanis 2003.
     1.5 +// Distributed under the Boost Software License, Version 1.0. (See accompanying
     1.6 +// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.)
     1.7 +
     1.8 +// See http://www.boost.org/libs/iostreams for documentation.
     1.9 +
    1.10 +// Contains constants used by library.
    1.11 +
    1.12 +#ifndef BOOST_IOSTREAMS_CONSTANTS_HPP_INCLUDED
    1.13 +#define BOOST_IOSTREAMS_CONSTANTS_HPP_INCLUDED
    1.14 +
    1.15 +#if defined(_MSC_VER) && (_MSC_VER >= 1020)
    1.16 +# pragma once
    1.17 +#endif              
    1.18 +
    1.19 +#ifndef BOOST_IOSTREAMS_DEFAULT_DEVICE_BUFFER_SIZE
    1.20 +# define BOOST_IOSTREAMS_DEFAULT_DEVICE_BUFFER_SIZE 4096
    1.21 +#endif
    1.22 +
    1.23 +#ifndef BOOST_IOSTREAMS_DEFAULT_FILTER_BUFFER_SIZE
    1.24 +# define BOOST_IOSTREAMS_DEFAULT_FILTER_BUFFER_SIZE 128
    1.25 +#endif
    1.26 +
    1.27 +#ifndef BOOST_IOSTREAMS_DEFAULT_PBACK_BUFFER_SIZE
    1.28 +# define BOOST_IOSTREAMS_DEFAULT_PBACK_BUFFER_SIZE 4
    1.29 +#endif
    1.30 +
    1.31 +#include <boost/iostreams/detail/ios.hpp>  // streamsize.
    1.32 +
    1.33 +namespace boost { namespace iostreams {
    1.34 +
    1.35 +const std::streamsize default_device_buffer_size = 
    1.36 +    BOOST_IOSTREAMS_DEFAULT_DEVICE_BUFFER_SIZE; 
    1.37 +const std::streamsize default_filter_buffer_size = 
    1.38 +    BOOST_IOSTREAMS_DEFAULT_FILTER_BUFFER_SIZE;
    1.39 +const std::streamsize default_pback_buffer_size = 
    1.40 +    BOOST_IOSTREAMS_DEFAULT_PBACK_BUFFER_SIZE;
    1.41 +
    1.42 +} } // End namespaces iostreams, boost.
    1.43 +
    1.44 +#endif // #ifndef BOOST_IOSTREAMS_CONSTANTS_HPP_INCLUDED