1
2
3
4
5
6
7
8
use glib::subclass::prelude::*;

use crate::subclass::prelude::PreferencesRowImpl;
use crate::EntryRow;

pub trait EntryRowImpl: PreferencesRowImpl {}

unsafe impl<T: EntryRowImpl> IsSubclassable<T> for EntryRow {}