xref: /haiku/headers/cpp/string (revision 24159a0c7d6d6dcba9f2a0c1a7c08d2c8167f21b)
1// Main header for the -*- C++ -*- string classes.
2
3#ifndef __STRING__
4#define __STRING__
5
6#include <std/bastring.h>
7
8extern "C++" {
9typedef basic_string <char> string;
10// typedef basic_string <wchar_t> wstring;
11} // extern "C++"
12
13#endif
14