#include <Utilities/StorageFactory/interface/IOBuffer.h>
Public Member Functions | |
void * | data (void) const |
Return a pointer to the beginning of the buffer's data area. | |
IOBuffer (const void *data, IOSize length) | |
Construct a I/O buffer for writing. | |
IOBuffer (void *data, IOSize length) | |
Construct a I/O buffer for reading. | |
IOBuffer (void) | |
Construct a null I/O buffer. | |
IOSize | size (void) const |
Return the buffer's size. | |
Private Attributes | |
void * | m_data |
IOSize | m_length |
Definition at line 7 of file IOBuffer.h.
IOBuffer::IOBuffer | ( | void | ) | [inline] |
Return a pointer to the beginning of the buffer's data area.
Definition at line 45 of file IOBuffer.h.
References m_data.
Referenced by IOInput::read(), Storage::read(), Storage::write(), IOOutput::write(), IOInput::xread(), and IOOutput::xwrite().
00046 { return m_data; }
Return the buffer's size.
Definition at line 50 of file IOBuffer.h.
References m_length.
Referenced by IOInput::read(), Storage::read(), IOChannel::readv(), XrdFile::readv(), Storage::write(), IOOutput::write(), IOChannel::writev(), IOInput::xread(), and IOOutput::xwrite().
00051 { return m_length; }
void* IOBuffer::m_data [private] |
IOSize IOBuffer::m_length [private] |