mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-06-14 08:12:16 +02:00
Implement IComponent::terminate()
This commit is contained in:
@@ -68,8 +68,10 @@ struct WantsPluginFactory {
|
||||
* encodes the information we request or the operation we want to perform. A
|
||||
* request of type `ControlRequest(T)` should send back a `T::Response`.
|
||||
*/
|
||||
using ControlRequest =
|
||||
std::variant<YaComponent::Create, YaComponent::Destroy, WantsPluginFactory>;
|
||||
using ControlRequest = std::variant<YaComponent::Create,
|
||||
YaComponent::Destroy,
|
||||
YaComponent::Terminate,
|
||||
WantsPluginFactory>;
|
||||
|
||||
template <typename S>
|
||||
void serialize(S& s, ControlRequest& payload) {
|
||||
|
||||
Reference in New Issue
Block a user