eid-viewer
eid-viewer library
cppeidstring.h
1 #ifdef __cplusplus
2  #ifndef CPPEIDSTRING_H
3  #define CPPEIDSTRING_H
4 #include <stdio.h>
5 #include <string>
6 #include "utftranslate.h"
7 
8  #ifndef WIN32
9  typedef std::string EID_STRING;
10  #define EID_OSTRINGSTREAM std::ostringstream
11  #define EID_STRINGSTREAM std::stringstream
12  #else
13  typedef std::wstring EID_STRING;
14  #define EID_OSTRINGSTREAM std::wostringstream
15  #define EID_STRINGSTREAM std::wstringstream
16  #endif
17  #endif
18 #endif