blob: 7b9adb27e8255ef6d492599040abcc995b68177c [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 class wrap C string and provide std_string like
13// interface
14// ***************************************************************************
15
Jeff Thompson3d613fd2013-10-15 15:39:04 -070016#ifndef NDNBOOST_TEST_BASIC_CSTRING_FWD_HPP_071894GER
17#define NDNBOOST_TEST_BASIC_CSTRING_FWD_HPP_071894GER
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070018
19#include <ndnboost/detail/workaround.hpp>
20
21namespace ndnboost {
22
23namespace unit_test {
24
25template<typename CharT> class basic_cstring;
26typedef basic_cstring<char const> const_string;
Jeff Thompson3d613fd2013-10-15 15:39:04 -070027#if NDNBOOST_WORKAROUND(__DECCXX_VER, NDNBOOST_TESTED_AT(60590041))
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070028typedef const_string literal_string;
29#else
30typedef const_string const literal_string;
31#endif
32
33typedef char const* const c_literal_string;
34
35} // namespace unit_test
36
37} // namespace ndnboost
38
Jeff Thompson3d613fd2013-10-15 15:39:04 -070039#endif // NDNBOOST_TEST_BASIC_CSTRING_FWD_HPP_071894GER
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070040