40 StrStr & operator<<(
const _Tp & val )
41 { _str << val;
return *
this; }
43 operator std::string()
const 44 {
return _str.str(); }
46 std::ostringstream _str;
50 extern unsigned split(
const std::string line_tv,
51 std::vector<std::string> & words_Vtr,
52 const std::string sep_tv =
" \t",
53 const bool singlesep_bv =
false );
59 ostream & operator<<( ostream &,
const wstring & );
62 #endif // stringutil_h
StringStream with autoconversion to std::string.