00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057 #ifndef XIMOL_TYPEDEFS_HPP_
00058 #define XIMOL_TYPEDEFS_HPP_
00059
00060 #include <boost/config.hpp>
00061 #include <ximol/namespace_defs.hpp>
00062 #include <string>
00063 #include <sstream>
00064
00065 #ifdef BOOST_NO_STD_WSTRING
00066 namespace std {
00067 typedef basic_string<wchar_t> wstring;
00068 typedef basic_ostream<wchar_t> wostream;
00069 typedef basic_istream<wchar_t> wistream;
00070 typedef basic_iostream<wchar_t> wstream;
00071 typedef basic_ostringstream<wchar_t> wostringstream;
00072 typedef basic_istringstream<wchar_t> wistringstream;
00073 typedef basic_stringstream<wchar_t> wstringstream;
00074 };
00075 #endif
00076
00077 XIMOL_BEGIN_NAMESPACE
00078
00079
00080 typedef wchar_t xchar_t;
00081
00082
00083 typedef ::std::basic_string<xchar_t> xstring;
00084
00085 XIMOL_END_NAMESPACE
00086
00087 #endif // #ifndef XIMOL_TYPEDEFS_HPP_