Go to the documentation of this file.
3 #ifndef STRINGSTREAM_H_LOADED
4 #define STRINGSTREAM_H_LOADED 1
11 #define SSTREAM ostringstream
12 #define SS_C_STR(s) (s).str().c_str()
13 #define SS_STRING(s) (s).str()
15 using STD::ostringstream;
20 #define SSTREAM ostrstream
21 #define SS_C_STR(s) (s).str()
23 #define SS_STRING(s) ((s)<<ends,string((s).str()))
25 using STD::ostrstream;
29 #error "Neither HAVE_SSTREAM nor HAVE_STRSTREAM is defined!"