cloned stream. Allow reading from a different offset More...
#include <streamclone.h>
Public Member Functions | |
StreamClone (Stream *clone, off_t offset) | |
virtual Error | open () |
virtual int | close () |
virtual int | seek (off_t offset, int whence) |
virtual int | read (void *buf, size_t count) |
virtual off_t | filesize () |
cloned stream. Allow reading from a different offset
Definition at line 35 of file streamclone.h.
int OpenRaw::IO::StreamClone::close | ( | ) | [virtual] |
Stream::Error OpenRaw::IO::StreamClone::open | ( | ) | [virtual] |
open the file
Implements OpenRaw::IO::Stream.
Definition at line 42 of file streamclone.cpp.
References OpenRaw::IO::Stream::seek().
int OpenRaw::IO::StreamClone::read | ( | void * | buf, | |
size_t | count | |||
) | [virtual] |
read in the file. Semantics are similar to POSIX read()
Implements OpenRaw::IO::Stream.
Definition at line 75 of file streamclone.cpp.
References OpenRaw::IO::Stream::read().
int OpenRaw::IO::StreamClone::seek | ( | off_t | offset, | |
int | whence | |||
) | [virtual] |
seek in the file. Semantics are similar to POSIX lseek()
Implements OpenRaw::IO::Stream.
Definition at line 62 of file streamclone.cpp.
References OpenRaw::IO::Stream::seek().