Rebase for the trait refactor in #295.

This commit is contained in:
mitchmindtree 2019-07-05 06:03:33 +10:00
parent b7d40d2993
commit 64dc6accf9
1 changed files with 6 additions and 4 deletions

View File

@ -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};