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 {
|
use {
|
||||||
BuildStreamError,
|
BuildStreamError,
|
||||||
DefaultFormatError,
|
DefaultFormatError,
|
||||||
Device as DeviceTrait,
|
|
||||||
DeviceNameError,
|
DeviceNameError,
|
||||||
DevicesError,
|
DevicesError,
|
||||||
EventLoop as EventLoopTrait,
|
|
||||||
Format,
|
Format,
|
||||||
Host as HostTrait,
|
|
||||||
PauseStreamError,
|
PauseStreamError,
|
||||||
PlayStreamError,
|
PlayStreamError,
|
||||||
StreamDataResult,
|
StreamDataResult,
|
||||||
StreamId as StreamIdTrait,
|
|
||||||
SupportedFormatsError,
|
SupportedFormatsError,
|
||||||
};
|
};
|
||||||
|
use traits::{
|
||||||
|
DeviceTrait,
|
||||||
|
EventLoopTrait,
|
||||||
|
HostTrait,
|
||||||
|
StreamIdTrait,
|
||||||
|
};
|
||||||
|
|
||||||
pub use self::device::{Device, Devices, SupportedInputFormats, SupportedOutputFormats};
|
pub use self::device::{Device, Devices, SupportedInputFormats, SupportedOutputFormats};
|
||||||
pub use self::stream::{EventLoop, StreamId};
|
pub use self::stream::{EventLoop, StreamId};
|
||||||
|
|
Loading…
Reference in New Issue