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