os/ossrv/ossrv_pub/boost_apis/boost/iostreams/detail/newline.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/detail/newline.hpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,31 @@
     1.4 +// (C) Copyright Jonathan Turkanis 2005.
     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 +#ifndef BOOST_IOSTREAMS_DETAIL_NEWLINE_HPP_INCLUDED
    1.11 +#define BOOST_IOSTREAMS_DETAIL_NEWLINE_HPP_INCLUDED
    1.12 +
    1.13 +#if defined(_MSC_VER) && (_MSC_VER >= 1020)
    1.14 +# pragma once
    1.15 +#endif
    1.16 +
    1.17 +namespace boost { namespace iostreams { namespace detail {
    1.18 +
    1.19 +template<typename Ch>
    1.20 +struct newline;
    1.21 +
    1.22 +template<>
    1.23 +struct newline<char> {
    1.24 +    BOOST_STATIC_CONSTANT(char, value = '\n');
    1.25 +};
    1.26 +
    1.27 +template<>
    1.28 +struct newline<wchar_t> {
    1.29 +    BOOST_STATIC_CONSTANT(wchar_t, value = L'\n');
    1.30 +};
    1.31 +
    1.32 +} } } // End namespaces detaill, iostreams, boost.
    1.33 +
    1.34 +#endif // #ifndef BOOST_IOSTREAMS_DETAIL_NEWLINE_HPP_INCLUDED