mirror of
https://gitlab.freedesktop.org/dabrain34/GstPipelineStudio.git
synced 2025-01-25 16:18:11 +00:00
a0bb503b27
Nodes and links can be selected and deleted
11 lines
189 B
Rust
11 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;
|