1997-08-22 00:57:35 +02:00
|
|
|
// Main header for the -*- C++ -*- string classes.
|
|
|
|
|
|
|
|
#ifndef __STRING__
|
|
|
|
#define __STRING__
|
|
|
|
|
|
|
|
#include <std/bastring.h>
|
|
|
|
|
1997-10-10 08:56:56 +02:00
|
|
|
extern "C++" {
|
|
|
|
typedef basic_string <char> string;
|
1999-02-20 13:21:51 +01:00
|
|
|
// typedef basic_string <wchar_t> wstring;
|
1997-10-10 08:56:56 +02:00
|
|
|
} // extern "C++"
|
|
|
|
|
1997-08-22 00:57:35 +02:00
|
|
|
#endif
|