blob: 4bea4223b7e8797ca967f14d635a97b9d654bd02 [file] [log] [blame]
package net.onrc.onos.ofcontroller.networkgraph;
public class NetworkGraphObject {
protected final NetworkGraph graph;
public NetworkGraphObject(NetworkGraph graph) {
this.graph = graph;
}
}