1
0
Fork 0
nih-plug/src/prelude.rs
Robbert van der Helm a1be942d6d Add flags to control parameter visibility
For the host and in generic UIs. These aren't wired up to anything yet.
2022-03-23 13:04:14 +01:00

25 lines
953 B
Rust

// Re-export the macros, derive macros are already re-exported ferom their respectivem odules
pub use super::nih_debug_assert;
pub use super::nih_debug_assert_eq;
pub use super::nih_debug_assert_failure;
pub use super::nih_debug_assert_ne;
pub use super::nih_export_clap;
pub use super::nih_export_vst3;
pub use super::nih_log;
pub use super::formatters;
pub use super::util;
pub use super::buffer::Buffer;
pub use super::context::{GuiContext, ParamSetter, ProcessContext};
// This also includes the derive macro
pub use super::param::enums::{Enum, EnumParam};
pub use super::param::internals::{ParamPtr, Params};
pub use super::param::range::{FloatRange, IntRange};
pub use super::param::smoothing::{Smoother, SmoothingStyle};
pub use super::param::{BoolParam, FloatParam, IntParam, Param, ParamFlags};
pub use super::plugin::{
BufferConfig, BusConfig, ClapPlugin, Editor, NoteEvent, ParentWindowHandle, Plugin,
ProcessStatus, Vst3Plugin,
};