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

Definition at line 73 of file bitwriters.hpp.
Public Member Functions | |
| string_bitwriter (std::string &_s) | |
| Constructor. | |
Protected Member Functions | |
| void | write_next_byte (char c) |
| Defines the method of writing a single byte of output. | |
Protected Attributes | |
| std::string & | s |
|
|
Constructor.
Definition at line 78 of file bitwriters.hpp.
00078 : s(_s) { ; }
|
|
|
Defines the method of writing a single byte of output. Derived classes should implement this function.
Implements bitwriter. Definition at line 83 of file bitwriters.hpp.
00083 { s += c; }
|