std::basic_streambuf<CharT,Traits>::~basic_streambuf (3) - Linux Manuals
std::basic_streambuf<CharT,Traits>::~basic_streambuf: std::basic_streambuf<CharT,Traits>::~basic_streambuf
NAME
std::basic_streambuf<CharT,Traits>::~basic_streambuf - std::basic_streambuf<CharT,Traits>::~basic_streambuf
Synopsis
virtual ~basic_streambuf();
This destruction is empty: the members of this basic_streambuf (the pointers and the locale) are destructed in accordance with the usual object destruction sequence after this destructor returns. However, since it is declared public virtual, it allows the objects that are derived from std::basic_streambuf to be deleted through a pointer to base class.
Parameters
(none)
Example
// Run this code
Output:
See also
constructor (protected member function)