sl@0
|
1 |
// (C) Copyright Jonathan Turkanis 2005.
|
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 |
#ifndef BOOST_IOSTREAMS_DETAIL_NEWLINE_HPP_INCLUDED
|
sl@0
|
8 |
#define BOOST_IOSTREAMS_DETAIL_NEWLINE_HPP_INCLUDED
|
sl@0
|
9 |
|
sl@0
|
10 |
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
|
sl@0
|
11 |
# pragma once
|
sl@0
|
12 |
#endif
|
sl@0
|
13 |
|
sl@0
|
14 |
namespace boost { namespace iostreams { namespace detail {
|
sl@0
|
15 |
|
sl@0
|
16 |
template<typename Ch>
|
sl@0
|
17 |
struct newline;
|
sl@0
|
18 |
|
sl@0
|
19 |
template<>
|
sl@0
|
20 |
struct newline<char> {
|
sl@0
|
21 |
BOOST_STATIC_CONSTANT(char, value = '\n');
|
sl@0
|
22 |
};
|
sl@0
|
23 |
|
sl@0
|
24 |
template<>
|
sl@0
|
25 |
struct newline<wchar_t> {
|
sl@0
|
26 |
BOOST_STATIC_CONSTANT(wchar_t, value = L'\n');
|
sl@0
|
27 |
};
|
sl@0
|
28 |
|
sl@0
|
29 |
} } } // End namespaces detaill, iostreams, boost.
|
sl@0
|
30 |
|
sl@0
|
31 |
#endif // #ifndef BOOST_IOSTREAMS_DETAIL_NEWLINE_HPP_INCLUDED
|