(C++) streambuf.hFebruary 24, 2017 · View on GitHub (C++) streambuf.h 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; }