#ifndef SV_STRING_INC #define SV_STRING_INC #include #include #include "sv_char_traits.h" typedef std::basic_string sv_string; std::ostream& operator<<(std::ostream& os, const sv_string& s) { return os << s.c_str(); } std::istream& operator>>(std::istream& is, sv_string& s) { std::string t; is >> t; s = t.c_str(); return is; } #endif