blob: e6017176c5225cbcfd21b491ad51ee6519be9835 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef __TSTRING_H__
# define __TSTRING_H__
#include <tchar.h>
#include <string>
namespace std {
typedef basic_string<TCHAR, char_traits<TCHAR>, allocator<TCHAR>> tstring;
}
#endif // __TSTRING_H__
|