| 29 | #define LOAD(field) this->field = conf.get(STRINGFY(field), this->field) |
| 30 | |
| 31 | void |
| 32 | GenericInspectorConfig::deserialize(Suscan::Object const &conf) |
| 33 | { |
| 34 | LOAD(spectrumPalette); |
| 35 | LOAD(spectrumRatio); |
| 36 | LOAD(waveFormPalette); |
| 37 | LOAD(waveFormOffset); |
| 38 | LOAD(waveFormContrast); |
| 39 | LOAD(peakHold); |
| 40 | LOAD(peakDetect); |
| 41 | LOAD(units); |
| 42 | LOAD(gain); |
| 43 | LOAD(zeroPoint); |
| 44 | } |
| 45 | |
| 46 | Suscan::Object && |
| 47 | GenericInspectorConfig::serialize(void) |
nothing calls this directly
no outgoing calls
no test coverage detected