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 dbus_interface;
8mod dbus_proxy;
9mod file_enumerator;
10mod file_monitor;
11mod initable;
12mod input_stream;
13mod io_stream;
14mod list_model;
15mod output_stream;
16mod seekable;
17mod socket_control_message;
18mod vfs;
19
20pub use self::application::ArgumentList;
21
22pub mod prelude {
23    #[doc(hidden)]
24    pub use glib::subclass::prelude::*;
25
26    pub use super::{
27        action_group::{ActionGroupImpl, ActionGroupImplExt},
28        action_map::{ActionMapImpl, ActionMapImplExt},
29        application::{ApplicationImpl, ApplicationImplExt},
30        async_initable::{AsyncInitableImpl, AsyncInitableImplExt},
31        dbus_interface::{DBusInterfaceImpl, DBusInterfaceImplExt},
32        dbus_proxy::{DBusProxyImpl, DBusProxyImplExt},
33        file_enumerator::{FileEnumeratorImpl, FileEnumeratorImplExt},
34        file_monitor::{FileMonitorImpl, FileMonitorImplExt},
35        initable::{InitableImpl, InitableImplExt},
36        input_stream::{InputStreamImpl, InputStreamImplExt},
37        io_stream::{IOStreamImpl, IOStreamImplExt},
38        list_model::{ListModelImpl, ListModelImplExt},
39        output_stream::{OutputStreamImpl, OutputStreamImplExt},
40        seekable::{SeekableImpl, SeekableImplExt},
41        socket_control_message::{SocketControlMessageImpl, SocketControlMessageImplExt},
42        vfs::{VfsImpl, VfsImplExt},
43    };
44}