A manipulator that skips past bytes in the stream. More...
#include <DataEncoder.h++>

Public Member Functions | |
| Skip (size_t count) throw () | |
| Construct a new Skip manipulator. | |
| ~Skip () throw () | |
| Destructor. | |
Protected Member Functions | |
| void | apply (DataEncoder &encoder) const throw (IOException) |
| Apply the DataManipulator to a DataEncoder. | |
A manipulator that skips past bytes in the stream.
When reading, the bytes are simply skipped; when writing, the bytes are filled with NULs.
| Skip | ( | size_t | count | ) | throw () |
Construct a new Skip manipulator.
| count | The number of bytes to skip. |
| ~Skip | ( | ) | throw () |
Destructor.
| void apply | ( | DataEncoder & | encoder | ) | const throw (IOException) [protected, virtual] |
Apply the DataManipulator to a DataEncoder.
| encoder | The target DataEncoder. |
| IOException | If an I/O error occurs. |
Implements Manipulator.
1.6.3