gio/subclass/
mod.rs

1// Take a look at the license at the top of the repository in the LICENSE file.
2
3mod action_group;
4mod action_map;
5mod application;
6mod async_initable;
7mod initable;
8mod input_stream;
9mod io_stream;
10mod list_model;
11mod output_stream;
12mod seekable;
13mod socket_control_message;
14
15pub use self::application::ArgumentList;
16
17pub mod prelude {
18    #[doc(hidden)]
19    pub use glib::subclass::prelude::*;
20
21    pub use super::{
22        action_group::{ActionGroupImpl, ActionGroupImplExt},
23        action_map::{ActionMapImpl, ActionMapImplExt},
24        application::{ApplicationImpl, ApplicationImplExt},
25        async_initable::{AsyncInitableImpl, AsyncInitableImplExt},
26        initable::{InitableImpl, InitableImplExt},
27        input_stream::{InputStreamImpl, InputStreamImplExt},
28        io_stream::{IOStreamImpl, IOStreamImplExt},
29        list_model::{ListModelImpl, ListModelImplExt},
30        output_stream::{OutputStreamImpl, OutputStreamImplExt},
31        seekable::{SeekableImpl, SeekableImplExt},
32        socket_control_message::{SocketControlMessageImpl, SocketControlMessageImplExt},
33    };
34}