2022-03-03 23:30:29 +01:00
|
|
|
//! Documentation is currently a work in progress. Import everything from the [`prelude`] module and
|
|
|
|
//! check out the example plugins to get started.
|
|
|
|
|
2022-04-11 16:41:09 +02:00
|
|
|
#![cfg_attr(feature = "docs", feature(doc_auto_cfg))]
|
2022-03-01 21:39:53 +01:00
|
|
|
#![cfg_attr(feature = "simd", feature(portable_simd))]
|
|
|
|
|
2022-04-30 02:10:54 +02:00
|
|
|
// These macros are also in the crate root and in the prelude, but having the module itself be pub
|
|
|
|
// as well makes it easy to import _just_ the macros without using `#[macro_use] extern crate nih_plug;`
|
2022-01-26 20:51:34 +01:00
|
|
|
#[macro_use]
|
2022-04-30 02:10:54 +02:00
|
|
|
pub mod debug;
|
2022-02-02 15:12:33 +01:00
|
|
|
|
2022-04-24 15:20:25 +02:00
|
|
|
/// A re-export of the `log` crate for use in the debug macros. This should not be used directly.
|
|
|
|
pub use log;
|
|
|
|
|
2022-03-03 23:30:29 +01:00
|
|
|
/// Everything you'll need to use NIH-plug. Import this with `use nih_plug::prelude::*;`.
|
2022-03-03 23:23:51 +01:00
|
|
|
pub mod prelude;
|
|
|
|
|
|
|
|
// These modules have also been re-exported in the prelude.
|
2022-01-28 14:33:29 +01:00
|
|
|
pub mod formatters;
|
2022-01-26 11:48:40 +01:00
|
|
|
pub mod util;
|
2022-01-26 12:50:30 +01:00
|
|
|
|
2022-03-03 23:23:51 +01:00
|
|
|
pub mod buffer;
|
|
|
|
pub mod context;
|
2022-03-03 23:34:06 +01:00
|
|
|
mod event_loop;
|
2022-04-07 23:28:31 +02:00
|
|
|
pub mod midi;
|
2022-02-02 15:12:33 +01:00
|
|
|
pub mod param;
|
|
|
|
pub mod plugin;
|
|
|
|
pub mod wrapper;
|