Skip to content
This repository has been archived by the owner on Jun 8, 2021. It is now read-only.

Commit

Permalink
Reexport all subclass types
Browse files Browse the repository at this point in the history
  • Loading branch information
EPashkin committed Mar 13, 2020
1 parent b54a555 commit 47e6541
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions src/subclass/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 <http://opensource.org/licenses/MIT>

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};
Expand Down

0 comments on commit 47e6541

Please sign in to comment.