Rename wrapper:👏:plugin to *::wrapper
To match the struct name.
This commit is contained in:
parent
4ceb0efdc4
commit
6d63d3f095
|
@ -4,7 +4,7 @@ mod util;
|
||||||
mod context;
|
mod context;
|
||||||
mod descriptor;
|
mod descriptor;
|
||||||
mod factory;
|
mod factory;
|
||||||
mod plugin;
|
mod wrapper;
|
||||||
|
|
||||||
/// Re-export for the wrapper.
|
/// Re-export for the wrapper.
|
||||||
pub use self::factory::Factory;
|
pub use self::factory::Factory;
|
||||||
|
|
|
@ -2,7 +2,7 @@ use parking_lot::RwLockWriteGuard;
|
||||||
use std::collections::VecDeque;
|
use std::collections::VecDeque;
|
||||||
use std::sync::atomic::Ordering;
|
use std::sync::atomic::Ordering;
|
||||||
|
|
||||||
use super::plugin::{Task, Wrapper};
|
use super::wrapper::{Task, Wrapper};
|
||||||
use crate::context::ProcessContext;
|
use crate::context::ProcessContext;
|
||||||
use crate::event_loop::EventLoop;
|
use crate::event_loop::EventLoop;
|
||||||
use crate::plugin::{ClapPlugin, NoteEvent};
|
use crate::plugin::{ClapPlugin, NoteEvent};
|
||||||
|
|
|
@ -7,7 +7,7 @@ use std::ptr;
|
||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
|
|
||||||
use super::descriptor::PluginDescriptor;
|
use super::descriptor::PluginDescriptor;
|
||||||
use super::plugin::Wrapper;
|
use super::wrapper::Wrapper;
|
||||||
use crate::ClapPlugin;
|
use crate::ClapPlugin;
|
||||||
|
|
||||||
/// The plugin's factory. Initialized using a lazy_static from the entry poiunt's `get_factory()`
|
/// The plugin's factory. Initialized using a lazy_static from the entry poiunt's `get_factory()`
|
||||||
|
|
Loading…
Reference in a new issue