blob: fde4a440d342c7d3ddb2a7ebd68fa70c6018156f [file] [log] [blame]
package net.onrc.onos.core.topology;
public class NetworkGraphObject {
protected final NetworkGraph graph;
public NetworkGraphObject(NetworkGraph graph) {
this.graph = graph;
}
}