streambuf 234 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 #ifndef STREAMBUF #define STREAMBUF template <typename> struct basic_streambuf { basic_streambuf(const basic_streambuf &); }; template <typename T> basic_streambuf<T>::basic_streambuf(const basic_streambuf &) = default; #endif