| 123 | } |
| 124 | |
| 125 | std::vector<const srd_channel*> Decoder::binded_probe_list() |
| 126 | { |
| 127 | std::vector<const srd_channel*> lst; |
| 128 | |
| 129 | for (auto it = _probes.begin(); it != _probes.end(); ++it){ |
| 130 | lst.push_back((*it).first); |
| 131 | } |
| 132 | |
| 133 | return lst; |
| 134 | } |
| 135 | |
| 136 | bool Decoder::have_required_probes() |
| 137 | { |
no test coverage detected