dsn,drawing: remove mistakenly committed incomplete files

This commit is contained in:
Mikolaj Wielgus 2024-03-23 18:50:00 +00:00
parent ef823c1c27
commit 6a5be3c368
2 changed files with 0 additions and 22 deletions

View File

@ -1,8 +0,0 @@
use enum_dispatch::enum_dispatch;
use super::graph::GeometryIndex;
#[enum_dispatch]
pub trait GetGroups< {
fn node_groups(&self, node: GeometryIndex) -> Vec<GeometryIndex>;
}

View File

@ -1,14 +0,0 @@
use petgraph::stable_graph::StableGraph;
use crate::layout::{graph::GeometryIndex, groups::GetGroups};
#[derive(Debug)]
pub struct DsnGroups {
map: BTreeMap<
}
impl GetGroups for DsnGroups {
fn node_groups(&self, node: GeometryIndex) -> Vec<GroupIndex> {
//
}
}