openmct/src/MCT.js

14 lines
268 B
JavaScript
Raw Normal View History

2016-05-27 11:49:43 -07:00
define(['EventEmitter'], function (EventEmitter) {
function MCT() {
EventEmitter.call(this);
}
MCT.prototype = Object.create(EventEmitter.prototype);
MCT.prototype.start = function () {
this.emit('start');
};
return MCT;
});