1
0
Fork 0

Rename wrapper:👏:plugin to *::wrapper

To match the struct name.
This commit is contained in:
Robbert van der Helm 2022-03-03 15:08:14 +01:00
parent 4ceb0efdc4
commit 6d63d3f095
4 changed files with 3 additions and 3 deletions

View file

@ -4,7 +4,7 @@ mod util;
mod context;
mod descriptor;
mod factory;
mod plugin;
mod wrapper;
/// Re-export for the wrapper.
pub use self::factory::Factory;

View file

@ -2,7 +2,7 @@ use parking_lot::RwLockWriteGuard;
use std::collections::VecDeque;
use std::sync::atomic::Ordering;
use super::plugin::{Task, Wrapper};
use super::wrapper::{Task, Wrapper};
use crate::context::ProcessContext;
use crate::event_loop::EventLoop;
use crate::plugin::{ClapPlugin, NoteEvent};

View file

@ -7,7 +7,7 @@ use std::ptr;
use std::sync::Arc;
use super::descriptor::PluginDescriptor;
use super::plugin::Wrapper;
use super::wrapper::Wrapper;
use crate::ClapPlugin;
/// The plugin's factory. Initialized using a lazy_static from the entry poiunt's `get_factory()`