#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; }; using ostringstream = basic_ostringstream; } // namespace eng #endif // WRAP_SSTREAM_HPP