#include <s32mem.h>
class RMemReadStream : public RReadStream |
Public Member Functions | |
---|---|
RMemReadStream() | |
RMemReadStream(const TAny *, TInt) | |
IMPORT_C void | Open(const TAny *, TInt) |
Supports the reading of a stream from a pointer of any type.
See also: TMemBuf RReadStream
RMemReadStream | ( | ) | [inline] |
Constructs an empty object.
Call Open() to prepare the stream for reading.
Constructs the RMemReadStream object and prepares the stream hosted in the specified plain memory location for reading.
See also: RMemReadStream::Open
Parameters | |
---|---|
aPtr | The start address for the area of memory that will be the source of this stream. |
aLength | The length of the area of memory. |
Open a stream that reads from a pointer of any type.
To close the stream and free its resources call Close()
See also: TMemBuf::Set RReadStream::Attach
Parameters | |
---|---|
aPtr | The start address for the area of memory that will be the source of this stream. |
aLength | The length of the area of memory. |