| 11 | |
| 12 | struct config : caf::actor_system_config { |
| 13 | config() { |
| 14 | opt_group{custom_options_, "global"} // |
| 15 | .add<size_t>("num-values,n", "number of values produced by the source"); |
| 16 | } |
| 17 | |
| 18 | caf::settings dump_content() const override { |
| 19 | auto result = actor_system_config::dump_content(); |