| 451 | } |
| 452 | |
| 453 | bool |
| 454 | Source::Config::hasParam(const std::string &key) const |
| 455 | { |
| 456 | const char *param; |
| 457 | |
| 458 | if (this->instance == nullptr) |
| 459 | return ""; |
| 460 | |
| 461 | param = suscan_source_config_get_param(this->instance, key.c_str()); |
| 462 | |
| 463 | return param != nullptr; |
| 464 | } |
| 465 | |
| 466 | SUBOOL |
| 467 | Source::Config::walkParams( |