#ifndef TSTRING_H
#define TSTRING_H

#include <string>
#include <tchar.h>

namespace std {
    typedef basic_string<_TCHAR> _tstring;
#ifdef _UNICODE
    #define _tcerr wcerr
#else
    #define _tcerr cerr
#endif
}

#endif
