1 #ifndef STREAMBUF 2 #define STREAMBUF 3 template <typename> struct basic_streambuf { 4 basic_streambuf(const basic_streambuf &); 5 }; 6template <typename T> basic_streambuf<T>::basic_streambuf(const basic_streambuf &) = default; 7#endif 8