2022-01-26 12:37:45 +01:00
|
|
|
//! Wrappers for different plugin types. Each wrapper has an entry point macro that you can pass the
|
|
|
|
//! name of a type that implements `Plugin` to. The macro will handle the rest.
|
|
|
|
|
2022-02-28 14:45:31 +01:00
|
|
|
pub mod clap;
|
2022-04-07 14:12:02 +02:00
|
|
|
pub mod state;
|
2022-01-29 14:20:14 +01:00
|
|
|
pub(crate) mod util;
|
2022-04-15 16:14:42 +02:00
|
|
|
|
2022-04-22 17:00:59 +02:00
|
|
|
#[cfg(feature = "standalone")]
|
|
|
|
pub mod standalone;
|
2022-04-15 16:14:42 +02:00
|
|
|
#[cfg(feature = "vst3")]
|
2022-01-26 12:37:45 +01:00
|
|
|
pub mod vst3;
|
2022-04-24 15:24:35 +02:00
|
|
|
|
|
|
|
// This is used by the wrappers.
|
|
|
|
pub use util::setup_logger;
|