File size: 289 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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;
|