std_string.h 905 B

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