streambuf.h is an STL header file that contains the definition of std::basic_streambuf.
#include <streambuf> struct MyStreambuf : public std::basic_streambuf <char> { //Empty class }; int main() { MyStreambuf s; }