[mlir][py] Enable loading only specified dialects during creation. (#121421)
[llvm-project.git] / libcxx / modules / std / sstream.inc
blob99ec3b34e5af07db0769968c36537097282a238d
1 // -*- C++ -*-
2 //===----------------------------------------------------------------------===//
3 //
4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // See https://llvm.org/LICENSE.txt for license information.
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //
8 //===----------------------------------------------------------------------===//
10 export namespace std {
11 #if _LIBCPP_HAS_LOCALIZATION
12   using std::basic_stringbuf;
14   using std::swap;
16   using std::stringbuf;
17 #  if _LIBCPP_HAS_WIDE_CHARACTERS
18   using std::wstringbuf;
19 #  endif
21   using std::basic_istringstream;
23   using std::istringstream;
24 #  if _LIBCPP_HAS_WIDE_CHARACTERS
25   using std::wistringstream;
26 #  endif
28   using std::basic_ostringstream;
30   using std::ostringstream;
31 #  if _LIBCPP_HAS_WIDE_CHARACTERS
32   using std::wostringstream;
33 #  endif
35   using std::basic_stringstream;
37   using std::stringstream;
38 #  if _LIBCPP_HAS_WIDE_CHARACTERS
39   using std::wstringstream;
40 #  endif
41 #endif // _LIBCPP_HAS_LOCALIZATION
42 } // namespace std