Update to CLAP 1.1.7

Factories got moved to a new `factory` directory.
This commit is contained in:
Robbert van der Helm
2023-01-27 21:03:43 +01:00
parent 29acd40a9a
commit d58c204178
15 changed files with 46 additions and 39 deletions
@@ -16,17 +16,19 @@
#pragma once
#include "../common.h"
#include "host.h"
#include "plugin.h"
#include "../../common.h"
#include "../host.h"
#include "../plugin.h"
// Serialization messages for `clap/plugin-factory.h`
namespace clap {
namespace factory {
namespace plugin_factory {
/**
* The response to the `clap::plugin_factory::List` message defined below.
* The response to the `clap::factory::plugin_factory::List` message defined
* below.
*/
struct ListResponse {
/**
@@ -57,7 +59,8 @@ struct List {
};
/**
* The response to the `clap::plugin_factory::Create` message defined below.
* The response to the `clap::factory::plugin_factory::Create` message defined
* below.
*/
struct CreateResponse {
/**
@@ -99,4 +102,5 @@ struct Create {
};
} // namespace plugin_factory
} // namespace factory
} // namespace clap