The Micro C++ Library
|
A Writer class defines methods to read from a Stream. More...
#include <micxx/traits/Writer.hxx>
Public Types | |
typedef CharType | char_type |
typedef OffType | off_type |
Public Member Functions | |
virtual | ~Writer () |
The Writer destructor. | |
virtual void | write (const void *buffer, off_type size)=0 |
Write size Writer::char_type from the buffer to the stream. |
A Writer class defines methods to read from a Stream.
typedef CharType micxx::traits::Writer< CharType, OffType >::char_type |
Reimplemented in micxx::File.
typedef OffType micxx::traits::Writer< CharType, OffType >::off_type |
Reimplemented in micxx::File.
virtual micxx::traits::Writer< CharType, OffType >::~Writer | ( | ) | [inline, virtual] |
The Writer destructor.
{}
virtual void micxx::traits::Writer< CharType, OffType >::write | ( | const void * | buffer, |
off_type | size | ||
) | [pure virtual] |
Write size Writer::char_type from the buffer to the stream.
Implemented in micxx::File.