mirror of
https://github.com/Xetibo/ReSet.git
synced 2025-04-18 18:48:33 +02:00
17 lines
404 B
Rust
17 lines
404 B
Rust
use adw::glib;
|
|
use adw::glib::Object;
|
|
|
|
use super::outputStreamEntryImpl;
|
|
|
|
glib::wrapper! {
|
|
pub struct OutputStreamEntry(ObjectSubclass<outputStreamEntryImpl::OutputStreamEntry>)
|
|
@extends gtk::Box, gtk::Widget,
|
|
@implements gtk::Accessible, gtk::Buildable, gtk::ConstraintTarget, gtk::Orientable;
|
|
}
|
|
|
|
impl OutputStreamEntry {
|
|
pub fn new() -> Self {
|
|
Object::builder().build()
|
|
}
|
|
}
|