A pipe_middle class pushes input down the pipeline. More...
#include <tpie/pipelining/pipe_base.h>
Inherits tpie::pipelining::bits::pipe_nonterm_base< pipe_middle< fact_t > >.
Public Types | |
| typedef fact_t | factory_type |
Public Member Functions | |
| pipe_middle (const fact_t &factory) | |
| template<typename fact2_t > | |
| pipe_middle < bits::pair_factory< fact_t, fact2_t > > | operator| (const pipe_middle< fact2_t > &r) |
| The pipe operator combines this generator/filter with another filter. More... | |
| template<typename fact2_t > | |
| pipe_end < bits::termpair_factory < fact_t, fact2_t > > | operator| (const pipe_end< fact2_t > &r) |
| This pipe operator combines this generator/filter with a terminator to make a pipeline. More... | |
| constructed< dest_t >::type | construct (const dest_t &dest) const |
| pipe_middle< fact_t > & | memory (double amount) |
| double | memory () const |
| pipe_middle< fact_t > & | name (const std::string &n, priority_type p=PRIORITY_USER) |
| pipe_middle< fact_t > & | breadcrumb (const std::string &n) |
Public Attributes | |
| fact_t | factory |
Protected Member Functions | |
| pipe_middle< fact_t > & | self () |
| const pipe_middle< fact_t > & | self () const |
A pipe_middle class pushes input down the pipeline.
| fact_t | A factory with a construct() method like the factory_0, factory_1, etc. helpers. |
Definition at line 119 of file pipe_base.h.
|
inline |
The pipe operator combines this generator/filter with another filter.
Definition at line 134 of file pipe_base.h.
|
inline |
This pipe operator combines this generator/filter with a terminator to make a pipeline.
Definition at line 144 of file pipe_base.h.