| 35 | #define LOAD(field) this->field = conf.get(STRINGFY(field), this->field) |
| 36 | |
| 37 | void |
| 38 | FFTWidgetConfig::deserialize(Suscan::Object const &conf) |
| 39 | { |
| 40 | LOAD(collapsed); |
| 41 | LOAD(averaging); |
| 42 | LOAD(panWfRatio); |
| 43 | LOAD(peakDetect); |
| 44 | LOAD(peakHold); |
| 45 | LOAD(filled); |
| 46 | LOAD(panRangeMin); |
| 47 | LOAD(panRangeMax); |
| 48 | LOAD(wfRangeMin); |
| 49 | LOAD(wfRangeMax); |
| 50 | LOAD(palette); |
| 51 | LOAD(zoom); |
| 52 | LOAD(rangeLock); |
| 53 | LOAD(timeSpan); |
| 54 | LOAD(timeStamps); |
| 55 | LOAD(bookmarks); |
| 56 | LOAD(unitName); |
| 57 | LOAD(zeroPoint); |
| 58 | LOAD(gain); |
| 59 | } |
| 60 | |
| 61 | Suscan::Object && |
| 62 | FFTWidgetConfig::serialize(void) |
nothing calls this directly
no outgoing calls
no test coverage detected