radar-g/src/widgets/render/exterior/imp.rs
2024-03-24 19:50:18 +08:00

16 lines
344 B
Rust

use geo_types::MultiPolygon;
use gtk::glib;
use gtk::subclass::prelude::*;
use std::cell::RefCell;
#[derive(Default)]
pub struct ExteriorWidget {}
#[glib::object_subclass]
impl ObjectSubclass for ExteriorWidget {
const NAME: &'static str = "ExteriorWidget";
type Type = super::ExteriorWidget;
}
impl ObjectImpl for ExteriorWidget {}