#ifndef WRAP_SSTREAM_HPP #define WRAP_SSTREAM_HPP #include "eng-malloc.hpp" #include "wrap-string.hpp" #include #include namespace eng { template> class basic_ostringstream : public std::basic_ostringstream>, public eng::opnew { using underlying = std::basic_ostringstream>; using underlying::basic_ostringstream; }; //template> //using basic_stringbuf = std::basic_stringbuf>; using ostringstream = basic_ostringstream; //using stringbuf = basic_stringbuf; } // namespace eng #endif // WRAP_SSTREAM_HPP