var LGraph = require('layout-base').LGraph; | |
function CoSEGraph(parent, graphMgr, vGraph) { | |
LGraph.call(this, parent, graphMgr, vGraph); | |
} | |
CoSEGraph.prototype = Object.create(LGraph.prototype); | |
for (var prop in LGraph) { | |
CoSEGraph[prop] = LGraph[prop]; | |
} | |
module.exports = CoSEGraph; | |