| 266 | } |
| 267 | |
| 268 | bool Frontend::capableOf(const input::InputSystem system) const { |
| 269 | for (const input::dvb::delivery::UpSystem &deliverySystem : _deliverySystem) { |
| 270 | if (deliverySystem->isCapableOf(system)) { |
| 271 | return true; |
| 272 | } |
| 273 | } |
| 274 | return false; |
| 275 | } |
| 276 | |
| 277 | bool Frontend::capableToTransform(const std::string &msg, |
| 278 | const std::string &method) const { |
no test coverage detected