std_string.h 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. // Copyright (C) 2016 and later: Unicode, Inc. and others.
  2. // License & terms of use: http://www.unicode.org/copyright.html
  3. /*
  4. *******************************************************************************
  5. *
  6. * Copyright (C) 2009-2014, International Business Machines
  7. * Corporation and others. All Rights Reserved.
  8. *
  9. *******************************************************************************
  10. * file name: std_string.h
  11. * encoding: US-ASCII
  12. * tab size: 8 (not used)
  13. * indentation:4
  14. *
  15. * created on: 2009feb19
  16. * created by: Markus W. Scherer
  17. */
  18. #ifndef __STD_STRING_H__
  19. #define __STD_STRING_H__
  20. /**
  21. * \file
  22. * \brief C++ API: Central ICU header for including the C++ standard <string>
  23. * header and for related definitions.
  24. */
  25. #include "unicode/utypes.h"
  26. #if U_HAVE_STD_STRING
  27. #if !defined(_MSC_VER)
  28. namespace std { class type_info; } // WORKAROUND: http://llvm.org/bugs/show_bug.cgi?id=13364
  29. #endif
  30. #include <string>
  31. #endif // U_HAVE_STD_STRING
  32. #endif // __STD_STRING_H__