]>
git.saurik.com Git - apple/icu.git/blob - icuSources/common/unicode/std_string.h
   1 // © 2016 and later: Unicode, Inc. and others. 
   2 // License & terms of use: http://www.unicode.org/copyright.html 
   4 ******************************************************************************* 
   6 *   Copyright (C) 2009-2014, International Business Machines 
   7 *   Corporation and others.  All Rights Reserved. 
   9 ******************************************************************************* 
  10 *   file name:  std_string.h 
  12 *   tab size:   8 (not used) 
  15 *   created on: 2009feb19 
  16 *   created by: Markus W. Scherer 
  19 #ifndef __STD_STRING_H__ 
  20 #define __STD_STRING_H__ 
  24  * \brief C++ API: Central ICU header for including the C++ standard <string> 
  25  *                 header and for related definitions. 
  28 #include "unicode/utypes.h" 
  30 // Workaround for a libstdc++ bug before libstdc++4.6 (2011). 
  31 // https://bugs.llvm.org/show_bug.cgi?id=13364 
  32 #if defined(__GLIBCXX__) 
  33 namespace std 
{ class type_info
; } 
  37 #endif  // __STD_STRING_H__