xref: /haiku/headers/cpp/string (revision 5e96d7d537fbec23bad4ae9b4c8e7b02e769f0c6)
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;
10typedef basic_string <wchar_t> wstring;
11} // extern "C++"
12
13#endif
14