| 1715 | |
| 1716 | template<typename Chan_bundle> |
| 1717 | void Script_interpreter::cmd_chan_bundle_send_blob() |
| 1718 | { |
| 1719 | using std::type_index; |
| 1720 | using std::get; |
| 1721 | |
| 1722 | const auto& chan_bundle_list |
| 1723 | = get<Chan_bundle_list<Chan_bundle>>(m_test_chan_bundles[type_index(typeid(Chan_bundle))]); |
| 1724 | cmd_blob_sender_send_blob_impl<Chan_bundle_list<Chan_bundle>>(chan_bundle_list, typeid(Chan_bundle).name()); |
| 1725 | } |
| 1726 | |
| 1727 | template<typename Chan_bundle> |
| 1728 | void Script_interpreter::cmd_chan_bundle_send() |
nothing calls this directly
no outgoing calls
no test coverage detected