aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/basetypes/icu-ucsdet/include/unicode/std_string.h
diff options
context:
space:
mode:
authorGravatar Hoa V. Dinh <dinh.viet.hoa@gmail.com>2015-01-21 17:06:53 -0800
committerGravatar Hoa V. Dinh <dinh.viet.hoa@gmail.com>2015-01-21 17:06:53 -0800
commit97bce894f34a05378f661195c358fb18f90e3fdb (patch)
tree0ed6f76f32e8c77db0d48641092fd9b7b18300c2 /src/core/basetypes/icu-ucsdet/include/unicode/std_string.h
parentdfd76892dbab3b7fdc8dd6e12a2f262b1445a3bc (diff)
Embed ICU for charset detection
Diffstat (limited to 'src/core/basetypes/icu-ucsdet/include/unicode/std_string.h')
-rw-r--r--src/core/basetypes/icu-ucsdet/include/unicode/std_string.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/core/basetypes/icu-ucsdet/include/unicode/std_string.h b/src/core/basetypes/icu-ucsdet/include/unicode/std_string.h
new file mode 100644
index 00000000..05955c5d
--- /dev/null
+++ b/src/core/basetypes/icu-ucsdet/include/unicode/std_string.h
@@ -0,0 +1,37 @@
+/*
+*******************************************************************************
+*
+* Copyright (C) 2009-2014, International Business Machines
+* Corporation and others. All Rights Reserved.
+*
+*******************************************************************************
+* file name: std_string.h
+* encoding: US-ASCII
+* tab size: 8 (not used)
+* indentation:4
+*
+* created on: 2009feb19
+* created by: Markus W. Scherer
+*/
+
+#ifndef __STD_STRING_H__
+#define __STD_STRING_H__
+
+/**
+ * \file
+ * \brief C++ API: Central ICU header for including the C++ standard &lt;string&gt;
+ * header and for related definitions.
+ */
+
+#include "unicode/utypes.h"
+
+#if U_HAVE_STD_STRING
+
+#if !defined(_MSC_VER)
+namespace std { class type_info; } // WORKAROUND: http://llvm.org/bugs/show_bug.cgi?id=13364
+#endif
+#include <string>
+
+#endif // U_HAVE_STD_STRING
+
+#endif // __STD_STRING_H__