12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- #ifndef _STRINGFWD_H
- #define _STRINGFWD_H 1
- #pragma GCC system_header
- #include <bits/c++config.h>
- #include <bits/memoryfwd.h>
- namespace std _GLIBCXX_VISIBILITY(default)
- {
- _GLIBCXX_BEGIN_NAMESPACE_VERSION
-
- template<class _CharT>
- struct char_traits;
- template<> struct char_traits<char>;
- #ifdef _GLIBCXX_USE_WCHAR_T
- template<> struct char_traits<wchar_t>;
- #endif
- #if ((__cplusplus >= 201103L) \
- && defined(_GLIBCXX_USE_C99_STDINT_TR1))
- template<> struct char_traits<char16_t>;
- template<> struct char_traits<char32_t>;
- #endif
- _GLIBCXX_BEGIN_NAMESPACE_CXX11
- template<typename _CharT, typename _Traits = char_traits<_CharT>,
- typename _Alloc = allocator<_CharT> >
- class basic_string;
-
- typedef basic_string<char> string;
- #ifdef _GLIBCXX_USE_WCHAR_T
-
- typedef basic_string<wchar_t> wstring;
- #endif
- #if ((__cplusplus >= 201103L) \
- && defined(_GLIBCXX_USE_C99_STDINT_TR1))
-
- typedef basic_string<char16_t> u16string;
-
- typedef basic_string<char32_t> u32string;
- #endif
- _GLIBCXX_END_NAMESPACE_CXX11
-
- _GLIBCXX_END_NAMESPACE_VERSION
- }
- #endif
|