32 void dispatch(
const std::string&
_name);
33 void redirect_socket_params(
const std::string&
_name);
34 std::string replace_all(std::string str,
const std::string& from,
const std::string& to);
37 void cci_set(std::string
n,
T value)
39 auto handle = m_broker.get_param_handle(
n);
41 handle.set_cci_value(cci::cci_value(value));
42 else if (!m_broker.has_preset_value(
n)) {
43 m_broker.set_preset_cci_value(
n, cci::cci_value(value));
45 SCP_FATAL(())(
"Trying to re-set a value? {}",
n);
50 std::map<std::string, std::string> m_socket_redirects;