class MAGES::SceneGraph::Editor::PortPool

class PortPool
{
public:
    // fields

    static readonly int Capacity = 10000;
    Stack inputPorts;
    Stack outputPorts;

    // properties

    PortPool Instance;

    // methods

    PortPool();
    PortView Get(PortRef portRef, PortDir dir, string label);
    void Return(PortView v);
};