OSDN Git Service

fix cmake/Macros.cmake
[moflib/moflib.git] / moflib-1.0 / moflib / moflib / mof / tstring.hpp
1 #ifndef TSTRING_HPP
2 #define TSTRING_HPP
3
4 #include <string>
5 #include <tchar.h>
6 #include <sstream>
7
8 namespace mof {
9         typedef std::basic_string<TCHAR> tstring;
10         typedef std::basic_ostringstream<TCHAR> otstringstream;
11 };
12
13 #endif