WIP
This commit is contained in:
@@ -58,6 +58,13 @@ void Backend::send_data_result(BackToFront::DataResult &&info)
|
||||
BackToFront::MsgType::data_result, std::move(info));
|
||||
this->send_msg(std::move(msg));
|
||||
}
|
||||
void Backend::remove_data_node(uint16_t idx)
|
||||
{
|
||||
auto msg = std::make_unique<BackToFront::Msg>(
|
||||
BackToFront::MsgType::remove_data_node,
|
||||
std::move(BackToFront::RemoveDataNode{.node = idx}));
|
||||
this->send_msg(std::move(msg));
|
||||
}
|
||||
void Backend::send_selected_thread_changed(uint16_t idx)
|
||||
{
|
||||
auto msg = std::make_unique<BackToFront::Msg>(
|
||||
|
||||
Reference in New Issue
Block a user