| 166 | } |
| 167 | |
| 168 | Object |
| 169 | getField(std::string const &field) const |
| 170 | { |
| 171 | suscan_object_t *obj; |
| 172 | |
| 173 | SU_ATTEMPT(obj = suscan_object_get_field(this->instance, field.c_str())); |
| 174 | |
| 175 | return Object(obj); |
| 176 | } |
| 177 | |
| 178 | void |
| 179 | setField(std::string const &field, Object &&obj) |