/////////////////////// Source device wrapper ///////////////////////////
| 24 | |
| 25 | //////////////////////////// Source device wrapper /////////////////////////// |
| 26 | Source::GainDescription::GainDescription(const struct suscan_source_gain_desc *desc) |
| 27 | { |
| 28 | this->def = desc->def; |
| 29 | this->max = desc->max; |
| 30 | this->min = desc->min; |
| 31 | this->step = desc->step; |
| 32 | this->name = std::string(desc->name); |
| 33 | } |
| 34 | |
| 35 | Source::GainDescription::GainDescription(const struct suscan_analyzer_gain_info *desc) |
| 36 | { |
nothing calls this directly
no outgoing calls
no test coverage detected