| 38 | } |
| 39 | |
| 40 | void |
| 41 | Config::populate(void) |
| 42 | { |
| 43 | if (instance != nullptr) |
| 44 | for (unsigned int i = 0; i < instance->desc->field_count; ++i) |
| 45 | this->fields.push_back(FieldValue(instance->values[i])); |
| 46 | } |
| 47 | |
| 48 | Config::Config(suscan_config_t const *instance) |
| 49 | { |