2009-02-24 23:01:18 +00:00
|
|
|
/*
|
|
|
|
*******************************************************************************
|
|
|
|
*
|
2014-03-06 19:39:41 +00:00
|
|
|
* Copyright (C) 2009-2014, International Business Machines
|
2009-02-24 23:01:18 +00:00
|
|
|
* 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__
|
|
|
|
|
|
|
|
/**
|
2014-03-06 19:39:41 +00:00
|
|
|
* \file
|
2010-02-11 00:53:57 +00:00
|
|
|
* \brief C++ API: Central ICU header for including the C++ standard <string>
|
2009-02-24 23:01:18 +00:00
|
|
|
* header and for related definitions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "unicode/utypes.h"
|
|
|
|
|
|
|
|
#if U_HAVE_STD_STRING
|
|
|
|
|
2014-03-07 01:01:49 +00:00
|
|
|
#if !defined(_MSC_VER)
|
2014-03-06 19:39:41 +00:00
|
|
|
namespace std { class type_info; } // WORKAROUND: http://llvm.org/bugs/show_bug.cgi?id=13364
|
2014-03-07 00:30:23 +00:00
|
|
|
#endif
|
2009-02-24 23:01:18 +00:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#endif // U_HAVE_STD_STRING
|
|
|
|
|
|
|
|
#endif // __STD_STRING_H__
|