![]() |
zeep::char_streambuf — A simple class to use const char buffers as streambuf.
// In header: <zeep/streambuf.hpp> class char_streambuf : public { public: // construct/copy/destruct (, ); (); (char_streambuf &) = ; char_streambuf & (char_streambuf &) = ; // private member functions (); (); (); (); (, , ); (, ); };
It is very often useful to have a streambuf class that can wrap wrap around a const char* pointer.
char_streambuf
public
construct/copy/destruct( buffer, length);constructor taking a buffer and a length
( buffer);constructor taking a buffer using the standard strlen to determine the length
(char_streambuf &) = ;
char_streambuf & (char_streambuf &) = ;