tstring.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. /********************************************************************
  2. created: 2003/02/13
  3. file base: tstring
  4. file ext: h
  5. author: liupeng
  6. purpose: Header file for define variable that 
  7. can be used ANSI routines or UNICODE routines
  8. *********************************************************************/
  9. #ifndef __INCLUDE_TSTRING_H__
  10. #define __INCLUDE_TSTRING_H__
  11. #if defined (_MSC_VER) && (_MSC_VER >= 1020)
  12. #pragma once
  13. #endif
  14. #include <string>
  15. #include <tchar.h>
  16. /*
  17.  * namespace OnlineGameLib::Win32
  18.  */
  19. namespace OnlineGameLib {
  20. namespace Win32 {
  21. /*
  22.  * Typedefs
  23.  */
  24. #ifdef _UNICODE
  25. typedef std::wstring _tstring;
  26. #else
  27. typedef std::string _tstring;
  28. #endif
  29. } // End of namespace OnlineGameLib
  30. } // End of namespace Win32
  31. #endif //__INCLUDE_TSTRING_H__