|
Last change
on this file since b57ba05 was b57ba05, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 3 years ago |
|
Update headers in C++ files
|
-
Property mode
set to
100644
|
|
File size:
530 bytes
|
| Line | |
|---|
| 1 | /*
|
|---|
| 2 | * SPDX-FileCopyrightText: 2018 Jaroslav Jindrak
|
|---|
| 3 | *
|
|---|
| 4 | * SPDX-License-Identifier: BSD-3-Clause
|
|---|
| 5 | */
|
|---|
| 6 |
|
|---|
| 7 | #ifndef LIBCPP_BITS_STRING_STRINGFWD
|
|---|
| 8 | #define LIBCPP_BITS_STRING_STRINGFWD
|
|---|
| 9 |
|
|---|
| 10 | namespace std
|
|---|
| 11 | {
|
|---|
| 12 | template<class Char>
|
|---|
| 13 | struct char_traits;
|
|---|
| 14 |
|
|---|
| 15 | template<class T>
|
|---|
| 16 | struct allocator;
|
|---|
| 17 |
|
|---|
| 18 | template<
|
|---|
| 19 | class Char,
|
|---|
| 20 | class Traits = char_traits<Char>,
|
|---|
| 21 | class Allocator = allocator<Char>
|
|---|
| 22 | >
|
|---|
| 23 | class basic_string;
|
|---|
| 24 |
|
|---|
| 25 | using string = basic_string<char>;
|
|---|
| 26 | using wstring = basic_string<wchar_t>;
|
|---|
| 27 |
|
|---|
| 28 | }
|
|---|
| 29 |
|
|---|
| 30 | #endif
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.