|
tudocomp
– The TU Dortmund Compression Framework
|
#include <ChainCompressor.hpp>
Public Member Functions | |
| ChainCompressor ()=delete | |
| No default construction allowed. More... | |
| ChainCompressor (Env &&env) | |
| Construct the class with an environment and the algorithms to chain. More... | |
| template<class F > | |
| void | chain (Input &input, Output &output, bool reverse, F f) |
| virtual void | compress (Input &input, Output &output) override final |
Compress inp into out. More... | |
| virtual void | decompress (Input &input, Output &output) override final |
Decompress inp into out. More... | |
Public Member Functions inherited from tdc::Compressor | |
| virtual | ~Compressor ()=default |
| Compressor (Compressor const &)=default | |
| Compressor (Compressor &&)=default | |
| Compressor & | operator= (Compressor const &)=default |
| Compressor & | operator= (Compressor &&)=default |
| Compressor (Env &&env) | |
| Construct the compressor with an environment. More... | |
Public Member Functions inherited from tdc::Algorithm | |
| virtual | ~Algorithm ()=default |
| Algorithm (Algorithm const &)=default | |
| Algorithm (Algorithm &&)=default | |
| Algorithm & | operator= (Algorithm const &)=default |
| Algorithm & | operator= (Algorithm &&)=default |
| Algorithm (Env &&env) | |
| Instantiates an algorithm in the specified environment. More... | |
| Env & | env () |
| Provides access to the environment that the algorithm works in. More... | |
| const Env & | env () const |
Static Public Member Functions | |
| static Meta | meta () |
Definition at line 14 of file ChainCompressor.hpp.
|
inlinedelete |
No default construction allowed.
|
inline |
Construct the class with an environment and the algorithms to chain.
Definition at line 27 of file ChainCompressor.hpp.
|
inline |
Definition at line 31 of file ChainCompressor.hpp.
|
inlinefinaloverridevirtual |
Compress inp into out.
| input | The input stream. |
| output | The output stream. |
Implements tdc::Compressor.
Definition at line 69 of file ChainCompressor.hpp.
|
inlinefinaloverridevirtual |
Decompress inp into out.
| input | The input stream. |
| output | The output stream. |
Implements tdc::Compressor.
Definition at line 88 of file ChainCompressor.hpp.
|
inlinestatic |
Definition at line 16 of file ChainCompressor.hpp.