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