GstPipelineStudio/src/graphmanager/mod.rs
Stéphane Cerveau a49ba4a32a graphview: can now select nodes and links
Nodes and links can be selected and deleted
2022-01-11 17:58:26 +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;