OwlClass.js
Home
/
src /
webvowl /
js /
elements /
nodes /
implementations /
OwlClass.js
var RoundNode = require("../RoundNode");
module.exports = (function (){
var o = function ( graph ){
RoundNode.apply(this, arguments);
this.type("owl:Class");
};
o.prototype = Object.create(RoundNode.prototype);
o.prototype.constructor = o;
return o;
}());