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