Function CSPBuffer::CSPBuffer()
Description:
Creates a buffer with an initial size.
 |
Prototype:
CSPBuffer(unsigned long ulSize);
Arguments:
- unsigned long ulSize [IN]
The initial size of the buffer.
Return value:
No value is returned.
Examples:
CSPBuffer Buffer1( 100 ); CSPBuffer Buffer2; Buffer2.SetSize( 100 );
// Both buffers have the same size
See also:
member functions GetSize(), SetSize(), Resize(), Grow(), Shrink(), Empty()
|
|