mirror of
https://review.haiku-os.org/haiku
synced 2024-11-23 07:18:40 +01:00
9fba8251e9
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31909 a95241bf-73f2-0310-859d-f6bbb57e9c96
14 lines
235 B
C++
14 lines
235 B
C++
// Main header for the -*- C++ -*- string classes.
|
|
|
|
#ifndef __STRING__
|
|
#define __STRING__
|
|
|
|
#include <std/bastring.h>
|
|
|
|
extern "C++" {
|
|
typedef basic_string <char> string;
|
|
typedef basic_string <wchar_t> wstring;
|
|
} // extern "C++"
|
|
|
|
#endif
|