File: /home/padewitte/projets/webcomponents/myscript-js/src/output/music/musicLedgerLine.js
'use strict';
(function (scope) {
/**
* Music ledger line
*
* @class MusicLedgerLine
* @extends MusicElement
* @param {Object} [obj]
* @constructor
*/
function MusicLedgerLine(obj) {
scope.MusicElement.call(this, obj);
}
/**
* Inheritance property
*/
MusicLedgerLine.prototype = new scope.MusicElement();
/**
* Constructor property
*/
MusicLedgerLine.prototype.constructor = MusicLedgerLine;
// Export
scope.MusicLedgerLine = MusicLedgerLine;
})(MyScript);