11 lines
176 B
Plaintext
11 lines
176 B
Plaintext
|
#ifndef __TSTRING
|
||
|
#define __TSTRING
|
||
|
|
||
|
#include <xstring>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
typedef basic_string<TCHAR, char_traits<TCHAR>,
|
||
|
allocator<TCHAR> > tstring;
|
||
|
|
||
|
#endif // __TSTRING
|