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

15 lines
251 B
Text

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