This repository has been archived by the owner on Mar 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add prelude for commonly used items (#161)
* Add prelude Co-authored-by: doomy <[email protected]>
- Loading branch information
Nico Chatzi
and
doomy
authored
Feb 26, 2022
1 parent
0ec8865
commit c3acb39
Showing
8 changed files
with
20 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
//! A collection of commonly used items for implement a Plugin | ||
|
||
#[doc(no_inline)] | ||
pub use api::{Events, Supported}; | ||
#[doc(no_inline)] | ||
pub use buffer::{AudioBuffer, SendEventBuffer}; | ||
#[doc(no_inline)] | ||
pub use event::{Event, MidiEvent}; | ||
#[doc(no_inline)] | ||
pub use plugin::{CanDo, Category, HostCallback, Info, Plugin, PluginParameters}; | ||
#[doc(no_inline)] | ||
pub use util::{AtomicFloat, ParameterTransfer}; |