use super::{
super::{model::*, view::*},
backend::*,
};
pub struct SimpleTreeBackend;
impl SimpleTreeBackend {
pub fn tree_view() -> TreeView<Self> {
Self::tree_model().into()
}
pub fn tree_model() -> TreeModel<Self> {
TreeModel::new(())
}
}
impl TreeBackend for SimpleTreeBackend {
type Context = ();
type Error = ();
type ID = ();
type Data = ();
}