Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:13:08

0001 // © 2016 and later: Unicode, Inc. and others.
0002 // License & terms of use: http://www.unicode.org/copyright.html
0003 /*
0004 *******************************************************************************
0005 *
0006 *   Copyright (C) 2009-2014, International Business Machines
0007 *   Corporation and others.  All Rights Reserved.
0008 *
0009 *******************************************************************************
0010 *   file name:  std_string.h
0011 *   encoding:   UTF-8
0012 *   tab size:   8 (not used)
0013 *   indentation:4
0014 *
0015 *   created on: 2009feb19
0016 *   created by: Markus W. Scherer
0017 */
0018 
0019 #ifndef __STD_STRING_H__
0020 #define __STD_STRING_H__
0021 
0022 /**
0023  * \file
0024  * \brief C++ API: Central ICU header for including the C++ standard <string>
0025  *                 header and for related definitions.
0026  */
0027 
0028 #include "unicode/utypes.h"
0029 
0030 #if U_SHOW_CPLUSPLUS_API
0031 
0032 // Workaround for a libstdc++ bug before libstdc++4.6 (2011).
0033 // https://bugs.llvm.org/show_bug.cgi?id=13364
0034 #if defined(__GLIBCXX__)
0035 namespace std { class type_info; }
0036 #endif
0037 #include <string>
0038 
0039 #endif /* U_SHOW_CPLUSPLUS_API */
0040 
0041 #endif  // __STD_STRING_H__