| 130 | } |
| 131 | |
| 132 | SUFLOAT |
| 133 | PanoramicDialogConfig::getGain( |
| 134 | std::string const &dev, |
| 135 | std::string const &name) const |
| 136 | { |
| 137 | std::string fullName = "gain." + dev + "." + name; |
| 138 | |
| 139 | if (this->gains.find(fullName) == this->gains.cend()) |
| 140 | return 0; |
| 141 | |
| 142 | return this->gains.at(fullName); |
| 143 | } |
| 144 | |
| 145 | void |
| 146 | PanoramicDialogConfig::setGain( |