GstPipelineStudio/src/graphmanager/mod.rs
Stéphane Cerveau a0bb503b27 graphview: can now select nodes and links
Nodes and links can be selected and deleted
2022-01-11 20:48:53 +01:00

12 lines
189 B
Rust

mod graphview;
mod link;
mod node;
mod port;
pub use graphview::GraphView;
pub use link::Link;
pub use node::Node;
pub use node::NodeType;
pub use port::Port;
pub use port::PortDirection;