blob: 8ad770a1bf438cb556fe544aaafa4e41a5c43f72 [file] [log] [blame]
Jeff Thompsonef2d5a42013-08-22 19:09:24 -07001// (C) Copyright Gennadiy Rozental 2004-2008.
2// Distributed under the Boost Software License, Version 1.0.
3// (See accompanying file LICENSE_1_0.txt or copy at
4// http://www.boost.org/LICENSE_1_0.txt)
5
6// See http://www.boost.org/libs/test for the library home page.
7//
8// File : $RCSfile$
9//
10// Version : $Revision: 49312 $
11//
12// Description : basic_cstring i/o implementation
13// ***************************************************************************
14
Jeff Thompson3d613fd2013-10-15 15:39:04 -070015#ifndef NDNBOOST_TEST_BASIC_CSTRING_IO_HPP_071894GER
16#define NDNBOOST_TEST_BASIC_CSTRING_IO_HPP_071894GER
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070017
18// Boost.Test
19#include <ndnboost/test/utils/basic_cstring/basic_cstring.hpp>
20
21// STL
22#include <iosfwd>
23#include <string>
24
25#include <ndnboost/test/detail/suppress_warnings.hpp>
26
27//____________________________________________________________________________//
28
29namespace ndnboost {
30
31namespace unit_test {
32
Jeff Thompson3d613fd2013-10-15 15:39:04 -070033#ifdef NDNBOOST_CLASSIC_IOSTREAMS
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070034
35template<typename CharT>
36inline std::ostream&
37operator<<( std::ostream& os, basic_cstring<CharT> const& str )
38{
39 typedef typename ut_detail::bcs_base_char<CharT>::type char_type;
40 char_type const* const beg = reinterpret_cast<char_type const* const>( str.begin() );
41 char_type const* const end = reinterpret_cast<char_type const* const>( str.end() );
42 os << std::basic_string<char_type>( beg, end - beg );
43
44 return os;
45}
46
47#else
48
49template<typename CharT1, typename Tr,typename CharT2>
50inline std::basic_ostream<CharT1,Tr>&
51operator<<( std::basic_ostream<CharT1,Tr>& os, basic_cstring<CharT2> const& str )
52{
53 CharT1 const* const beg = reinterpret_cast<CharT1 const*>( str.begin() ); // !!
54 CharT1 const* const end = reinterpret_cast<CharT1 const*>( str.end() );
55 os << std::basic_string<CharT1,Tr>( beg, end - beg );
56
57 return os;
58}
59
60#endif
61
62//____________________________________________________________________________//
63
64
65} // namespace unit_test
66
67} // namespace ndnboost
68
69//____________________________________________________________________________//
70
71#include <ndnboost/test/detail/enable_warnings.hpp>
72
Jeff Thompson3d613fd2013-10-15 15:39:04 -070073#endif // NDNBOOST_TEST_BASIC_CSTRING_IO_HPP_071894GER