Rebase for the trait refactor in #295.
This commit is contained in:
parent
b7d40d2993
commit
64dc6accf9
|
@ -3,18 +3,20 @@ extern crate asio_sys as sys;
|
|||
use {
|
||||
BuildStreamError,
|
||||
DefaultFormatError,
|
||||
Device as DeviceTrait,
|
||||
DeviceNameError,
|
||||
DevicesError,
|
||||
EventLoop as EventLoopTrait,
|
||||
Format,
|
||||
Host as HostTrait,
|
||||
PauseStreamError,
|
||||
PlayStreamError,
|
||||
StreamDataResult,
|
||||
StreamId as StreamIdTrait,
|
||||
SupportedFormatsError,
|
||||
};
|
||||
use traits::{
|
||||
DeviceTrait,
|
||||
EventLoopTrait,
|
||||
HostTrait,
|
||||
StreamIdTrait,
|
||||
};
|
||||
|
||||
pub use self::device::{Device, Devices, SupportedInputFormats, SupportedOutputFormats};
|
||||
pub use self::stream::{EventLoop, StreamId};
|
||||
|
|
Loading…
Reference in New Issue