| 419 | } |
| 420 | |
| 421 | std::string |
| 422 | Source::Config::getPath(void) const |
| 423 | { |
| 424 | const char *path; |
| 425 | |
| 426 | if (this->instance == nullptr) |
| 427 | return ""; |
| 428 | |
| 429 | path = suscan_source_config_get_path(this->instance); |
| 430 | |
| 431 | if (path == nullptr) |
| 432 | return ""; |
| 433 | |
| 434 | return path; |
| 435 | } |
| 436 | |
| 437 | std::string |
| 438 | Source::Config::getParam(const std::string &key) const |
no outgoing calls
no test coverage detected