MCPcopy Create free account
hub / github.com/BatchDrake/SigDigger / getParam

Method getParam

Suscan/Source.cpp:437–451  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

435}
436
437std::string
438Source::Config::getParam(const std::string &key) const
439{
440 const char *param;
441
442 if (this->instance == nullptr)
443 return "";
444
445 param = suscan_source_config_get_param(this->instance, key.c_str());
446
447 if (param == nullptr)
448 return "";
449
450 return param;
451}
452
453bool
454Source::Config::hasParam(const std::string &key) const

Callers 5

setProfileMethod · 0.45
refreshProfileUiMethod · 0.45
refreshUIMethod · 0.45
refreshProfileMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected