blob: 25393d5ac5c867d3a06d38b63ce898c7d0ad1d24 [file] [log] [blame]
Jeff Thompson86b6d642013-10-17 15:01:56 -07001// (C) Copyright 2008 CodeRage, LLC (turkanis at coderage dot com)
2// (C) Copyright 2003-2007 Jonathan Turkanis
3// Distributed under the Boost Software License, Version 1.0. (See accompanying
4// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.)
5
6// See http://www.boost.org/libs/iostreams for documentation.
7
8// Contains constants used by library.
9
10#ifndef NDNBOOST_IOSTREAMS_CONSTANTS_HPP_INCLUDED
11#define NDNBOOST_IOSTREAMS_CONSTANTS_HPP_INCLUDED
12
13#if defined(_MSC_VER) && (_MSC_VER >= 1020)
14# pragma once
15#endif
16
17#ifndef NDNBOOST_IOSTREAMS_DEFAULT_DEVICE_BUFFER_SIZE
18# define NDNBOOST_IOSTREAMS_DEFAULT_DEVICE_BUFFER_SIZE 4096
19#endif
20
21#ifndef NDNBOOST_IOSTREAMS_DEFAULT_FILTER_BUFFER_SIZE
22# define NDNBOOST_IOSTREAMS_DEFAULT_FILTER_BUFFER_SIZE 128
23#endif
24
25#ifndef NDNBOOST_IOSTREAMS_DEFAULT_PBACK_BUFFER_SIZE
26# define NDNBOOST_IOSTREAMS_DEFAULT_PBACK_BUFFER_SIZE 4
27#endif
28
29#include <ndnboost/iostreams/detail/ios.hpp> // streamsize.
30
31namespace ndnboost { namespace iostreams {
32
33const std::streamsize default_device_buffer_size =
34 NDNBOOST_IOSTREAMS_DEFAULT_DEVICE_BUFFER_SIZE;
35const std::streamsize default_filter_buffer_size =
36 NDNBOOST_IOSTREAMS_DEFAULT_FILTER_BUFFER_SIZE;
37const std::streamsize default_pback_buffer_size =
38 NDNBOOST_IOSTREAMS_DEFAULT_PBACK_BUFFER_SIZE;
39
40} } // End namespaces iostreams, boost.
41
42#endif // #ifndef NDNBOOST_IOSTREAMS_CONSTANTS_HPP_INCLUDED