| Octane v1.01.20 - The Open Compression Toolkit for C++ | http://octane.sourceforge.net/ |
#include <bitreaders.hpp>
Inheritance diagram for null_bitreader:

Always returns zero.
Definition at line 29 of file bitreaders.hpp.
Public Member Functions | |
| null_bitreader (size_t size_in_bits=0) | |
| Constructor with optional size specification. | |
| bool | supports_seek () const |
| Check if seek functions are supported. | |
Protected Member Functions | |
| char | read_next_byte () |
| Defines the method of reading a single byte of input. | |
|
|
Constructor with optional size specification.
Definition at line 34 of file bitreaders.hpp.
00034 : bitreader(size_in_bits) { ; } |
|
|
Check if seek functions are supported.
Implements bitreader. Definition at line 38 of file bitreaders.hpp.
00038 { return false; }
|
|
|
Defines the method of reading a single byte of input. Derived classes must implement this function.
Implements bitreader. Definition at line 41 of file bitreaders.hpp.
00041 { return 0; }
|