Function CSPBuffer::Add()
Description:
Appends the content of a buffer at the end of the content of this object.
 |
Prototype:
void Add(const CSPBuffer& Buffer);
Arguments:
- const CSPBuffer& Buffer [IN]
The buffer with the data to be added.
Return value:
No return value (void).
Remarks:
The buffer will appropriately grow to fit the added data.
Examples:
CSPBuffer Buf1, Buf2; ... Buf1.Add( Buf2 );
See also:
member function operator += (), Copy(), Attach()
|
|