Implement process call creation

This commit is contained in:
Robbert van der Helm
2020-12-16 17:42:12 +01:00
parent 95a4ef8eed
commit 6f38f8400c
@@ -183,4 +183,9 @@ Steinberg::Vst::ProcessData& YaProcessData::get() {
return reconstructed_process_data;
}
// TODO: Response creation
YaProcessDataResponse YaProcessData::move_outputs_to_response() {
return YaProcessDataResponse{
.outputs = std::move(outputs),
.output_parameter_changes = std::move(output_parameter_changes),
.output_events = std::move(output_events)};
}