1// Take a look at the license at the top of the repository in the LICENSE file.
2
3// rustdoc-stripper-ignore-next
4//! GObject bindings
5
6#[allow(unused_imports)]
7mod auto;
8mod binding;
9#[cfg(feature = "v2_72")]
10#[cfg_attr(docsrs, doc(cfg(feature = "v2_72")))]
11mod binding_group;
12mod flags;
13#[cfg(feature = "v2_74")]
14#[cfg_attr(docsrs, doc(cfg(feature = "v2_74")))]
15mod signal_group;
16
17#[cfg(feature = "v2_72")]
18#[cfg_attr(docsrs, doc(cfg(feature = "v2_72")))]
19pub use binding_group::BindingGroupBuilder;
20
21pub use self::{auto::*, flags::*};
22//pub use self::auto::functions::*;
23