gtk4/builder_cscope.rs
1// Take a look at the license at the top of the repository in the LICENSE file.
2
3use crate::{ffi, BuilderScope};
4
5glib::wrapper! {
6 #[doc(alias = "GtkBuilderCScope")]
7 pub struct BuilderCScope(Object<ffi::GtkBuilderCScope, ffi::GtkBuilderCScopeClass>) @implements BuilderScope;
8
9 match fn {
10 type_ => || ffi::gtk_builder_cscope_get_type(),
11 }
12}