GstPipelineStudio/src/graphmanager/mod.rs
Stéphane Cerveau 5f91fbaef7 GPS: introduce the graphmanager
Introduce the first version of a graph manager
with:
- Graphview
- Node
- Port
2022-01-11 20:48:53 +01:00

10 lines
159 B
Rust

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