#include <Pipeline.h>
|
uint32_t | size (void) const |
|
const Pass & | at (uint32_t n) const |
|
void | append (std::unique_ptr< Pass > &&pass) |
|
Definition at line 29 of file Pipeline.h.
◆ append()
void enco::Pipeline::append |
( |
std::unique_ptr< Pass > && |
pass | ) |
|
|
inline |
Definition at line 38 of file Pipeline.h.
38{ _passes.emplace_back(std::move(pass)); }
◆ at()
const Pass & enco::Pipeline::at |
( |
uint32_t |
n | ) |
const |
|
inline |
Definition at line 35 of file Pipeline.h.
35{ return *(_passes.at(n)); }
◆ size()
uint32_t enco::Pipeline::size |
( |
void |
| ) |
const |
|
inline |
Definition at line 32 of file Pipeline.h.
32{ return _passes.size(); }
The documentation for this class was generated from the following file: