From 47e65417ad266b434feeecbcc47663294eb4b039 Mon Sep 17 00:00:00 2001 From: Evgenii Pashkin Date: Fri, 13 Mar 2020 19:29:55 +0300 Subject: [PATCH] Reexport all subclass types --- src/subclass/mod.rs | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/src/subclass/mod.rs b/src/subclass/mod.rs index 1c9e9e17..0f348c87 100644 --- a/src/subclass/mod.rs +++ b/src/subclass/mod.rs @@ -2,14 +2,17 @@ // See the COPYRIGHT file at the top-level directory of this distribution. // Licensed under the MIT license, see the LICENSE file or -pub mod application; -pub mod input_stream; -pub mod io_stream; -pub mod output_stream; -pub mod seekable; +mod application; +mod input_stream; +mod io_stream; +mod output_stream; +mod seekable; + +pub use self::application::ArgumentList; +pub use self::prelude::*; pub mod prelude { - pub use super::application::{ApplicationImpl, ApplicationImplExt, ArgumentList}; + pub use super::application::{ApplicationImpl, ApplicationImplExt}; pub use super::input_stream::{InputStreamImpl, InputStreamImplExt}; pub use super::io_stream::{IOStreamImpl, IOStreamImplExt}; pub use super::output_stream::{OutputStreamImpl, OutputStreamImplExt};