org-howto/ctl/ctl.js
2020-12-20 16:40:44 -05:00

11 lines
221 B
JavaScript

!function()
{
var ctl = {};
/* class to represent a model-view-controller triple.
* all models subclass this
*/
class Controller {
constructor() { this.child_l_ = []; }
}; /*Controller*/
}();