OSSIM - Open Source Software Image Map
Version 1.9.0 (20180803)
|
Alows one to create a buffered input stream. More...
#include <ossimIoStream.h>
Public Member Functions | |
ossimBufferedInputStream (std::shared_ptr< ossim::istream > in, ossim_uint32 bufferSize=1024) | |
will use the read buffer of the passed in input stream and will set the buffer based on the buffer size passed in More... | |
virtual | ~ossimBufferedInputStream () |
Protected Attributes | |
std::vector< char > | m_buffer |
We have a buffer that we allocate so it does not loose scope through the life of this stream. More... | |
std::shared_ptr< ossim::istream > | m_inputStream |
We will save the input stream we set the buffer to. More... | |
Alows one to create a buffered input stream.
Definition at line 184 of file ossimIoStream.h.
|
inline |
will use the read buffer of the passed in input stream and will set the buffer based on the buffer size passed in
Definition at line 191 of file ossimIoStream.h.
|
inlinevirtual |
Definition at line 201 of file ossimIoStream.h.
|
protected |
We have a buffer that we allocate so it does not loose scope through the life of this stream.
Definition at line 210 of file ossimIoStream.h.
|
protected |
We will save the input stream we set the buffer to.
Definition at line 215 of file ossimIoStream.h.