|
Returns a pointer to the associated std::strstreambuf
, casting away its constness (despite the const qualifier on the member function).
Parameters
(none).
Return value
Pointer to the associated std::strsteambuf
, with constness cast away.
Example
1 2 3 4 5 6 | #include <strstream> int main() { const std::strstream buf; std::strstreambuf* ptr = buf.rdbuf(); } |
Please login to continue.