1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/intl/icu/source/common/unicode/std_string.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,34 @@ 1.4 +/* 1.5 +******************************************************************************* 1.6 +* 1.7 +* Copyright (C) 2009-2011, International Business Machines 1.8 +* Corporation and others. All Rights Reserved. 1.9 +* 1.10 +******************************************************************************* 1.11 +* file name: std_string.h 1.12 +* encoding: US-ASCII 1.13 +* tab size: 8 (not used) 1.14 +* indentation:4 1.15 +* 1.16 +* created on: 2009feb19 1.17 +* created by: Markus W. Scherer 1.18 +*/ 1.19 + 1.20 +#ifndef __STD_STRING_H__ 1.21 +#define __STD_STRING_H__ 1.22 + 1.23 +/** 1.24 + * \file 1.25 + * \brief C++ API: Central ICU header for including the C++ standard <string> 1.26 + * header and for related definitions. 1.27 + */ 1.28 + 1.29 +#include "unicode/utypes.h" 1.30 + 1.31 +#if U_HAVE_STD_STRING 1.32 + 1.33 +#include <string> 1.34 + 1.35 +#endif // U_HAVE_STD_STRING 1.36 + 1.37 +#endif // __STD_STRING_H__