| 103 | |
| 104 | template<typename B> |
| 105 | module::Encoder_RA<B>* |
| 106 | Encoder_RA ::build(const module::Interleaver<B>& itl) const |
| 107 | { |
| 108 | if (this->type == "RA") return new module::Encoder_RA<B>(this->K, this->N_cw, itl); |
| 109 | |
| 110 | throw spu::tools::cannot_allocate(__FILE__, __LINE__, __func__); |
| 111 | } |
| 112 | |
| 113 | // ==================================================================================== explicit template instantiation |
| 114 | #include "Tools/types.h" |
nothing calls this directly
no outgoing calls
no test coverage detected