os/ossrv/ossrv_pub/boost_apis/boost/iostreams/constants.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// (C) Copyright Jonathan Turkanis 2003.
sl@0
     2
// Distributed under the Boost Software License, Version 1.0. (See accompanying
sl@0
     3
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.)
sl@0
     4
sl@0
     5
// See http://www.boost.org/libs/iostreams for documentation.
sl@0
     6
sl@0
     7
// Contains constants used by library.
sl@0
     8
sl@0
     9
#ifndef BOOST_IOSTREAMS_CONSTANTS_HPP_INCLUDED
sl@0
    10
#define BOOST_IOSTREAMS_CONSTANTS_HPP_INCLUDED
sl@0
    11
sl@0
    12
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
sl@0
    13
# pragma once
sl@0
    14
#endif              
sl@0
    15
sl@0
    16
#ifndef BOOST_IOSTREAMS_DEFAULT_DEVICE_BUFFER_SIZE
sl@0
    17
# define BOOST_IOSTREAMS_DEFAULT_DEVICE_BUFFER_SIZE 4096
sl@0
    18
#endif
sl@0
    19
sl@0
    20
#ifndef BOOST_IOSTREAMS_DEFAULT_FILTER_BUFFER_SIZE
sl@0
    21
# define BOOST_IOSTREAMS_DEFAULT_FILTER_BUFFER_SIZE 128
sl@0
    22
#endif
sl@0
    23
sl@0
    24
#ifndef BOOST_IOSTREAMS_DEFAULT_PBACK_BUFFER_SIZE
sl@0
    25
# define BOOST_IOSTREAMS_DEFAULT_PBACK_BUFFER_SIZE 4
sl@0
    26
#endif
sl@0
    27
sl@0
    28
#include <boost/iostreams/detail/ios.hpp>  // streamsize.
sl@0
    29
sl@0
    30
namespace boost { namespace iostreams {
sl@0
    31
sl@0
    32
const std::streamsize default_device_buffer_size = 
sl@0
    33
    BOOST_IOSTREAMS_DEFAULT_DEVICE_BUFFER_SIZE; 
sl@0
    34
const std::streamsize default_filter_buffer_size = 
sl@0
    35
    BOOST_IOSTREAMS_DEFAULT_FILTER_BUFFER_SIZE;
sl@0
    36
const std::streamsize default_pback_buffer_size = 
sl@0
    37
    BOOST_IOSTREAMS_DEFAULT_PBACK_BUFFER_SIZE;
sl@0
    38
sl@0
    39
} } // End namespaces iostreams, boost.
sl@0
    40
sl@0
    41
#endif // #ifndef BOOST_IOSTREAMS_CONSTANTS_HPP_INCLUDED